-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
57 lines (57 loc) · 1.65 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
{
"name": "jtool",
"version": "1.3.0",
"description": "javascript轻量类库",
"author": "拭目以待",
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/baukh789/jTool.git"
},
"bugs": {
"url": "https://github.com/baukh789/jTool/issues"
},
"homepage": "https://github.com/baukh789/jTool#readme",
"devDependencies": {
"browserify": "^13.0.0",
"codecov": "^1.0.1",
"express": "^4.15.3",
"jasmine-ajax": "^3.2.0",
"jasmine-core": "^2.6.4",
"jshint": "^2.8.0",
"karma": "0.13.22",
"karma-browserify": "5.0.4",
"karma-chrome-launcher": "2.0.0",
"karma-coverage": "1.1.1",
"karma-jasmine": "0.3.6",
"karma-jasmine-ajax": "0.1.13",
"karma-jshint-preprocessor": "0.0.6",
"karma-phantomjs-launcher": "1.0.0",
"phantomjs-prebuilt": "2.1.7",
"sinon": "1.17.2",
"uglifyjs": "2.4.10",
"watchify": "3.7.0"
},
"scripts": {
"report-coverage": "codecov",
"lint": "jshint src test",
"test": "karma start",
"build:dev": "browserify src/index.js > dist/jtool.js",
"build:minified": "browserify src/index.js | uglifyjs -mc > dist/index.js",
"build": "npm run build:dev && npm run build:minified && cp package.json dist/package.json && cp README.md dist/README.md"
},
"eslintConfig": {
"rules": {
"start": "node server.js",
"class-methods-use-this": "off",
"angular/module-getter": "off",
"no-unused-expressions": "off",
"no-param-reassign": "off",
"angular/no-private-call": "off",
"no-console": "off",
"no-process-env": "off",
"angular/log": "off"
}
}
}