-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.87 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
{
"name": "immutable-http",
"version": "4.0.0",
"description": "Http client with pretty simple chaining API",
"keywords": [
"javascript",
"xhr",
"http",
"rest"
],
"scripts": {
"doc": "rm -rf docs && esdoc -c ./esdoc.json",
"doc:publish": "gh-pages -d docs",
"lint": "eslint src test",
"test": "karma start --single-run",
"test:debug": "karma start",
"test:ci": "karma start --single-run --browsers PhantomJS",
"clean": "rm -rf ./dist",
"dist": "npm run clean && mkdir dist && webpack --progress --colors --config webpack.config.js",
"prepublish:supressed": "npm run dist && npm run doc && npm run doc:publish"
},
"main": "dist/index.js",
"homepage": "http://stremlenye.github.io/immutable-http/",
"bugs": {
"url": "https://github.com/stremlenye/immutable-http/issues"
},
"license": "MIT",
"people": {
"author": {
"name": "Yuriy Ankudinov",
"email": "stremlenye@gmail.com",
"url": "https://github.com/stremlenye"
}
},
"repository": {
"type": "git",
"url": "https://github.com/stremlenye/immutable-http.git"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.7.4",
"babel-eslint": "^6.0.2",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"body-parser": "^1.15.0",
"chai": "^3.2.0",
"cors": "^2.7.1",
"esdoc": "^0.4.6",
"esdoc-es7-plugin": "0.0.3",
"eslint": "^2.5.3",
"express": "^4.13.3",
"gh-pages": "^0.11.0",
"karma": "^0.13.22",
"karma-chrome-launcher": "^0.2.3",
"karma-firefox-launcher": "^0.1.6",
"karma-mocha": "^0.2.2",
"karma-phantomjs-launcher": "^1.0.0",
"karma-webpack": "^1.7.0",
"mocha": "^2.3.2",
"phantomjs-prebuilt": "^2.1.7",
"webpack": "^1.12.14"
},
"dependencies": {
"babel-runtime": "^6.6.1",
"option": "^0.2.3"
}
}