forked from liriliri/eruda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.14 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
{
"name": "eruda",
"version": "1.2.6",
"description": "Console for Mobile Browsers",
"main": "eruda.js",
"scripts": {
"ci": "npm run lint && npm run build && npm run test",
"build": "webpack --config script/webpack.dev.js && webpack -p --config script/webpack.release.js",
"dev": "webpack-dev-server --config script/webpack.dev.js --host 0.0.0.0",
"test": "karma start",
"setup": "node script/cpTestLib",
"genScriptUtil": "eustia build script/*.js -o script/util.js",
"lint": "eslint src",
"utilDoc": "eustia doc src/lib/util.js -f md -o doc/UTIL_API.md -t \"Eruda Util Documentation\""
},
"eustia": {
"eruda": {
"files": "src/**/*.js",
"ignore": "**/Info/defInfo.js",
"output": "src/lib/util.js",
"exclude": [
"createCfg"
],
"format": "commonjs"
},
"test": {
"files": ["test/**/*.js", "test/**/*.html"],
"output": "test/util.js",
"format": "global"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/liriliri/eruda.git"
},
"keywords": [
"console",
"mobile",
"debug"
],
"author": "redhoodsu",
"license": "MIT",
"bugs": {
"url": "https://github.com/liriliri/eruda/issues"
},
"homepage": "http://eruda.liriliri.io/",
"devDependencies": {
"autoprefixer": "^7.1.2",
"babel-core": "^6.6.5",
"babel-loader": "^7.0.0",
"babel-plugin-transform-runtime": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"copy": "^0.3.0",
"css-loader": "^0.28.0",
"draggabilly": "^2.1.0",
"eslint": "^4.5.0",
"handlebars": "^4.0.5",
"handlebars-loader": "^1.1.4",
"jasmine-core": "^2.4.1",
"jasmine-jquery": "^2.1.1",
"jquery": "^3.1.0",
"js-beautify": "^1.6.2",
"json-loader": "^0.5.4",
"karma": "^1.7.0",
"karma-jasmine": "^1.1.0",
"karma-jquery": "^0.2.2",
"karma-phantomjs-launcher": "^1.0.4",
"karma-wrap-preprocessor": "^0.1.0",
"modernizr": "^3.3.1",
"node-sass": "^4.5.0",
"postcss-class-prefix": "^0.3.0",
"postcss-loader": "^2.0.6",
"sass-loader": "^6.0.3",
"webpack": "^3.5.4",
"webpack-dev-server": "^2.7.1"
}
}