-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
63 lines (63 loc) · 1.54 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "validate-framework",
"version": "4.0.6",
"description": "轻量、强大、无依赖的 JavaScript 验证组件",
"homepage": "https://github.com/MinJieLiu/validate-framework",
"main": "dist/Validator.js",
"scripts": {
"clean": "rimraf dist",
"lint": "eslint src --fix",
"start": "better-npm-run dev --watch",
"deploy": "npm run clean && better-npm-run dev && better-npm-run prod"
},
"betterScripts": {
"dev": {
"command": "webpack",
"env": {
"NODE_ENV": "development"
}
},
"prod": {
"command": "webpack",
"env": {
"NODE_ENV": "production"
}
}
},
"repository": {
"type": "git",
"url": "https://github.com/MinJieLiu/validate-framework"
},
"keywords": [
"validate-framework",
"validator",
"validator.js",
"validation",
"validate",
"validate.js",
"validate-form",
"formValidate",
"form"
],
"author": "LMY",
"license": "MIT",
"dependencies": {
"validate-framework-utils": "^0.2.3"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"better-npm-run": "0.0.13",
"eslint": "^3.12.2",
"eslint-config-airbnb-base": "^11.0.0",
"eslint-plugin-import": "^2.2.0",
"rimraf": "^2.5.4",
"webpack": "^1.14.0"
}
}