forked from ncform/ncform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.27 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "ncform",
"private": true,
"license": "MIT",
"keywords": [
"vue",
"json",
"form",
"automatic",
"json-schema",
"ncform",
"generator",
"configuration"
],
"scripts": {
"bootstrap": "lerna bootstrap",
"link": "lerna link",
"lint": "eslint packages/*/src --fix",
"lint-build": "eslint packages/*/gulpfile.js packages/*/conf --fix",
"lint-test": "eslint packages/*/test --fix",
"lint-script": "eslint scripts/* --fix",
"doc": "node scripts/gen-doc.js",
"build": "lerna run build",
"commit": "git-cz",
"release:log": "conventional-changelog -p angular -i CHANGELOG_TEMP.md -s -r 0",
"release": "npm run lint && lerna run release && lerna publish",
"test": "lerna run test"
},
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "node scripts/verify-commit-msg.js"
},
"lint-staged": {
"packages/*/src": [
"eslint --fix",
"git add"
]
},
"devDependencies": {
"babel-core": "6.14.0",
"babel-eslint": "^8.2.5",
"babel-loader": "^7.1.5",
"babel-plugin-transform-runtime": "^6.3.13",
"babel-polyfill": "6.13.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-power-assert": "^1.0.0",
"babel-preset-stage-3": "^6.24.1",
"babel-register": "6.14.0",
"babel-runtime": "^6.3.19",
"commitizen": "^2.10.1",
"conventional-changelog": "^2.0.1",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-html": "^4.0.5",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-prettier": "^2.6.2",
"lerna": "^2.11.0",
"lint-staged": "^7.2.0",
"prettier": "^1.13.7",
"vue-loader": "^15.2.6",
"vue-template-compiler": "^2.5.17",
"webpack": "^4.16.4",
"webpack-cli": "^3.1.0",
"webpack-merge": "^4.1.4",
"yorkie": "^1.0.3"
},
"dependencies": {
"ora": "^2.1.0",
"gh-pages": "^1.2.0",
"fs-extra": "^6.0.1",
"glob": "^7.1.2",
"chalk": "^2.4.1"
},
"engines": {
"node": ">= 6.9.0 <= 11.0.0-0",
"npm": ">= 2.x <= 5.x",
"yarn": ">=0.27.5 || >=1.0.0-20170811"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}