-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
86 lines (86 loc) · 2.98 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": "quickapp-dsls",
"version": "0.1.5",
"description": "dsls-for-quickapp",
"scripts": {
"prettier": "prettier \"**/*.{md,js,json}\" --write",
"build": "npm run native && npm run native:release",
"clear": "rm -rf dist/debug && rm -rf dist/release/dsls",
"native": "npm run na:dv",
"native:release": "npm run na:ol",
"na": "npm run na:dv -- -w",
"na:dv": "cross-env NODE_PLATFORM=na NODE_PHASE=dv rollup -c config/rollup.config.js",
"na:ol": "cross-env NODE_PLATFORM=na NODE_PHASE=ol rollup -c config/rollup.config.js",
"test:suite": "npm run test:suite:lint && npm run test:suite:framework",
"test:suite:lint": "eslint test/suite/**/*.js",
"test:suite:framework": "npm run test:suite:framework:main",
"test:suite:framework:main": "npm run test:suite:framework:main:build && npm run test:suite:framework:main:vue",
"test:suite:framework:main:build": "webpack --config test/config/webpack.config.js",
"test:suite:framework:main:vue": "cross-env NODE_REPO_FROM=minify mocha --exit --recursive --require @babel/register test/suite/dsls/vue/project/page/**/*.test.js",
"test:suite:framework:main:vue:unit": "cross-env NODE_REPO_FROM=minify mocha --exit --require @babel/register test/suite/dsls/vue/unit/**/**/*.test.js"
},
"keywords": [],
"main": "dist/release/dsls/vue.js",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"prettier": {
"tabWidth": 2,
"printWidth": 100,
"semi": false,
"trailingComma": "none",
"singleQuote": true
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"app-module-path": "^2.2.0",
"chai": "^3.5.0",
"cross-env": "^3.2.4",
"crypto-js": "^3.1.9-1",
"css-loader": "^0.28.11",
"eslint": "^5.15.0",
"eslint-config-prettier": "^4.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"hap-toolkit": "^0.5.6",
"husky": "^1.3.1",
"json-loader": "0.5.4",
"lint-staged": "^8.1.4",
"loader-utils": "~0.2.14",
"mini-css-extract-plugin": "^0.4.5",
"mocha": "^5.2.0",
"prettier": "^1.16.4",
"reify": "^0.3.8",
"rollup": "^0.68.0",
"rollup-plugin-alias": "^1.4.0",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-buble": "^0.19.6",
"rollup-plugin-commonjs": "^5.0.5",
"rollup-plugin-eslint": "^5.0.0",
"rollup-plugin-json": "^2.0.2",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-plugin-postcss": "^0.2.0",
"rollup-plugin-replace": "^1.1.1",
"rollup-plugin-terser": "^4.0.0",
"rollup-watch": "^2.5.0",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0",
"source-map": "^0.5.6",
"vue-loader": "^15.4.2",
"vue-template-compiler": "^2.5.21",
"webpack": "^4.28",
"webpack-cli": "^3.1.2",
"webpack-sources": "^1.3.0"
}
}