-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.38 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
{
"name": "zcoil",
"version": "0.0.5",
"description": "zcoil",
"main": "index.js",
"scripts": {
"dev": "webpack --mode development",
"build": "cross-env webpack --mode production && mocha",
"server": "webpack-dev-server --mode development --port 8088",
"serve": "cross-env npm run opn && npm run server",
"testnode": "mocha",
"test": "cross-env npm run testnode && npm run teststorage",
"opn": "opn http://localhost:8088/",
"teststorage": "mocha-chrome ./test-storage/index.html",
"doc": "docsify serve ./docs"
},
"keywords": [
"webpack"
],
"repository": "https://github.com/channg/zcoil",
"author": "channg",
"license": "MIT",
"devDependencies": {
"@types/jquery": "^3.3.0",
"@types/lodash": "^4.14.109",
"babel-loader": "^7.1.4",
"babel-plugin-lodash": "^3.3.4",
"babel-preset-es2015": "^6.24.1",
"cross-env": "^5.2.0",
"css-loader": "^0.28.10",
"less": "^3.0.1",
"less-loader": "^4.0.6",
"lodash-webpack-plugin": "^0.11.5",
"mocha": "^5.2.0",
"mocha-chrome": "^1.1.0",
"opn-cli": "^3.1.0",
"style-loader": "^0.20.2",
"ts-loader": "^4.0.1",
"typescript": "^2.7.2",
"uglifyjs-webpack-plugin": "^1.2.6",
"webpack": "^4.0.1",
"webpack-cli": "^2.0.4",
"webpack-dev-server": "^3.1.0"
},
"dependencies": {
"localforage": "^1.7.2",
"lodash": "^4.17.10"
}
}