-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
92 lines (92 loc) · 3.17 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "jsonp-retry",
"version": "1.0.3",
"description": "A simple jsonp with retry and storage",
"main": "dist/jsonp.js",
"module": "dist/jsonp.esm.js",
"jsnext:main": "dist/jsonp.esm.js",
"scripts": {
"clear": "rm -rf dist",
"precommit": "lint-staged",
"lint": "eslint src test",
"lint:fix": "eslint src test --fix",
"test:karma": "karma start karma.conf.js --single-run",
"test:karma:watch": "npm run test:karma -- no-single-run",
"test": "npm-run-all lint test:karma",
"build": "npm-run-all clear transpile optimize minify",
"transpile:main": "rollup -c rollup.config.js",
"transpile": "npm-run-all transpile:main",
"optimize": "uglifyjs dist/jsonp.dev.js -c properties=false,conditionals=false,sequences=false,loops=false,join_vars=false,collapse_vars=false --pure-funcs=Object.defineProperty -b width=120,quote_style=3 -o dist/jsonp.js -p relative --in-source-map dist/jsonp.dev.js.map --source-map dist/jsonp.js.map",
"minify": "uglifyjs dist/jsonp.js -c properties=false,collapse_vars,evaluate,screw_ie8,unsafe,loops=false,keep_fargs=false,pure_getters,unused,dead_code -m -o dist/jsonp.min.js -p relative --in-source-map dist/jsonp.js.map --source-map dist/jsonp.min.js.map",
"release": "npm run build && npm test && release-it -n -p"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/luckyadam/jsonp-retry.git"
},
"keywords": [
"jsonp"
],
"files": [
"README.md",
"LICENSE",
"src",
"dist",
"index.js"
],
"author": "luckyadam",
"license": "MIT",
"bugs": {
"url": "https://github.com/luckyadam/jsonp-retry/issues"
},
"homepage": "https://github.com/luckyadam/jsonp-retry#readme",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-es3-member-expression-literals": "^6.22.0",
"babel-plugin-transform-es3-property-literals": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.1.1",
"coveralls": "^2.13.1",
"eslint": "^4.5.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.14.3",
"istanbul-instrumenter-loader": "^3.0.0",
"karma": "^1.7.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage-istanbul-reporter": "^1.3.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.4",
"karma-sauce-launcher": "^1.2.0",
"karma-sinon-chai": "^1.3.1",
"karma-source-map-support": "^1.2.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.4",
"lint-staged": "^6.0.0",
"mocha": "^3.5.0",
"npm-run-all": "^4.1.1",
"release-it": "^2.8.5",
"rollup": "^0.49.2",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.0",
"rollup-plugin-node-resolve": "^3.0.0",
"sinon": "^3.2.1",
"sinon-chai": "^2.13.0",
"webpack": "^3.5.5"
},
"dependencies": {
"object-assign": "^4.1.1"
}
}