-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
54 lines (54 loc) · 1.2 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
{
"name": "wee",
"version": "5.0.1",
"description": "Blueprint for modern web development",
"homepage": "https://www.weepower.com",
"license": "Apache-2.0",
"moduleRoots": "node_modules/wee-core/scripts",
"keywords": [
"css",
"framework",
"javascript"
],
"repository": "weepower/wee",
"bugs": "https://github.com/weepower/wee/issues",
"browserslist": [
"last 2 versions",
"safari >= 10",
"ie 11"
],
"config": {
"root": "public",
"assets": "assets",
"source": "source",
"components": "source/components",
"build": "build"
},
"scripts": {
"start": "wee serve",
"build": "wee build",
"serve": "wee serve",
"watch": "wee serve",
"lint:css": "wee stylelint",
"lint:css:fix": "wee stylelint --fix",
"lint:js": "wee eslint",
"lint:js:fix": "wee eslint --fix",
"wee": "wee"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint:js && npm run lint:css"
}
},
"devDependencies": {
"@weepower/cli": "^1.2.0"
},
"dependencies": {
"@babel/polyfill": "^7.0.0",
"@weepower/core": "^2.2.22",
"es6-promise": "^4.2.5",
"husky": "^3.0.9",
"path-to-regexp": "1.7.0",
"vue": "^2.5.22"
}
}