forked from jd-opensource/nutui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.35 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
87
88
89
{
"name": "@nutui/nutui",
"version": "2.2.10",
"description": "一套轻量级移动端Vue组件库",
"typings": "dist/types/index.d.ts",
"main": "dist/nutui.js",
"files": [
"dist",
"README.md",
"package.json",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"dev": "nutui-cli dev",
"build": "nutui-cli build",
"build:site": "nutui-cli build-site",
"clean": "nutui-cli clean",
"add": "nutui-cli add",
"test": "cross-env NODE_ENV=test nyc mocha-webpack --webpack-config node_modules/@nutui/cli/dist_cli/webpack/test.config.js --require node_modules/@nutui/cli/dist_cli/test/setup.js src/packages/**/__test__/**.spec.js",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"test:watch": "npm run test --watch"
},
"husky": {
"hooks": {
"pre-commit": "node ./scripts/verifymail.js && lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{ts,js,vue,scss}": "prettier --write"
},
"repository": {
"type": "git",
"url": "https://github.com/jdf2e/nutui.git"
},
"keywords": [
"nutui",
"nutui2",
"vue",
"webpack",
"vue component",
"jdc",
"jdcfe",
"jdl"
],
"author": "jdcfe",
"license": "MIT",
"dependencies": {
"@babel/plugin-proposal-object-rest-spread": "^7.9.5",
"@babel/plugin-syntax-jsx": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.6",
"@commitlint/cli": "^8.0.0",
"@commitlint/config-conventional": "^8.0.0",
"autoprefixer": "^9.8.4",
"babel-plugin-istanbul": "^6.0.0",
"gsap": "^3.2.6",
"hammerjs": "^2.0.8",
"vue-lazyload": "^1.3.3",
"vue-qr": "^2.2.1"
},
"peerDependencies": {
"vue": "^2.6.10"
},
"devDependencies": {
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-object-assign": "^7.8.3",
"@nutui/cli": "^0.3.8",
"@typescript-eslint/eslint-plugin": "^2.16.0",
"@typescript-eslint/parser": "^2.16.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-vue": "^6.1.2",
"lint-staged": "^10.2.11",
"husky": "^3.0.0",
"stylelint-config-standard": "^19.0.0"
},
"nyc": {
"include": [
"src/packages/**/*.vue"
],
"reporter": [
"lcov",
"text"
],
"instrument": false,
"sourceMap": false
}
}