-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.52 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
{
"name": "@ncform/nc-form",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "git+https://github.com/ncform/nc-form.git"
},
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build --target lib --name NcForm src/components/index.vue",
"lint": "vue-cli-service lint",
"test:e2e": "vue-cli-service test:e2e",
"test:unit": "vue-cli-service test:unit",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@ncform/ncform": "^1.3.2",
"@ncform/ncform-common": "^1.3.0",
"@ncform/ncform-theme-elementui": "^1.3.2",
"axios": "^0.18.0",
"core-js": "^2.6.5",
"element-ui": "^2.8.2",
"vue": "^2.6.10"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.7.0",
"@vue/cli-plugin-e2e-cypress": "^3.7.0",
"@vue/cli-plugin-eslint": "^3.7.0",
"@vue/cli-plugin-unit-mocha": "^3.7.0",
"@vue/cli-service": "^3.7.0",
"@vue/eslint-config-prettier": "^4.0.1",
"@vue/test-utils": "1.0.0-beta.29",
"babel-eslint": "^10.0.1",
"chai": "^4.1.2",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.0.0",
"lint-staged": "^8.1.5",
"vue-template-compiler": "^2.5.21",
"sass-loader": "^7.0.1",
"node-sass": "^4.9.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,vue}": [
"vue-cli-service lint",
"git add"
]
},
"main": "dist/NcForm.umd.js",
"description": "form widget for ncform",
"author": "daniel.xiao",
"keywords": [
"ncform",
"widget"
]
}