-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.38 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.38 KB
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
90
91
92
{
"name": "blade-scripts",
"version": "1.2.13",
"description": "",
"main": "./dist/index.js",
"bin": {
"blade": "./dist/index.js"
},
"scripts": {
"build": "taskr",
"release": "taskr release",
"prepare": "npm run release",
"test": "jest .",
"version":
"clgt -f docs/CHANGELOG.md -u http://git.doctorwork.com/web/blade-scripts/commits -r 0 && git add docs/CHANGELOG.md"
},
"files": ["dist", "index.js"],
"author": "luojie",
"license": "ISC",
"dependencies": {
"axios": "^0.16.2",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.0",
"babel-loader": "^7.1.2",
"babel-preset-vue-app": "^1.3.1",
"babel-runtime": "^6.26.0",
"chokidar": "^1.7.0",
"copy-webpack-plugin": "^4.2.1",
"cross-spawn": "^5.1.0",
"css-loader": "^0.28.7",
"debug": "^3.0.1",
"eslint": "^4.7.1",
"eventsource-polyfill": "^0.9.6",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"friendly-errors-webpack-plugin": "^1.6.1",
"fs-extra": "^4.0.2",
"glob": "^7.1.2",
"hash-sum": "^1.0.2",
"html-webpack-plugin": "^2.30.1",
"install": "^0.10.1",
"less": "^2.7.2",
"less-loader": "^4.0.5",
"lodash": "^4.17.4",
"minimist": "^1.2.0",
"opn": "^5.1.0",
"postcss": "^6.0.11",
"postcss-cssnext": "^3.0.2",
"postcss-import": "^11.0.0",
"postcss-loader": "^2.0.6",
"postcss-plugin-bem": "^1.0.4",
"postcss-pxtorem": "^4.0.1",
"postcss-url": "^7.1.2",
"progress-bar-webpack-plugin": "^1.10.0",
"request-promise": "^4.2.2",
"sass-resources-loader": "^1.3.1",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"url-loader": "^0.5.9",
"vue": "^2.4.4",
"vue-loader": "^13.0.4",
"vue-router": "^2.7.0",
"vue-style-loader": "^3.0.3",
"vue-template-compiler": "^2.4.4",
"vuex": "^2.4.0",
"webpack": "^3.6.0",
"webpack-assets-manifest": "^1.0.0",
"webpack-dev-middleware": "^1.12.0",
"webpack-dev-server": "^2.9.1",
"webpack-hot-middleware": "^2.19.1"
},
"devDependencies": {
"@taskr/babel": "^1.1.0",
"@taskr/clear": "^1.1.0",
"@taskr/esnext": "^1.1.0",
"@taskr/watch": "^1.1.0",
"babel-jest": "^21.2.0",
"jest": "^21.2.1",
"taskr": "^1.1.0"
},
"jest": {
"moduleFileExtensions": ["js", "json", "vue", "less"],
"moduleNameMapper": {
"^~(.*)$": "<rootDir>/$1",
"^vue$": "vue/dist/vue.common.js"
},
"moduleDirectories": ["node_modules"],
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest"
}
}
}