-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.7 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
{
"author": "planttheidea",
"bugs": {
"url": "https://github.com/planttheidea/courier/issues"
},
"description": "A simple http request system based on fetch",
"devDependencies": {
"babel": "^6.3.26",
"babel-cli": "^6.4.0",
"babel-eslint": "^5.0.0-beta6",
"babel-loader": "^6.2.1",
"babel-plugin-add-module-exports": "^0.1.3-alpha",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"ejs": "^2.3.4",
"eslint": "^1.10.3",
"eslint-friendly-formatter": "^1.2.2",
"eslint-loader": "^1.2.0",
"eslint-plugin-babel": "^3.0.0",
"express": "^4.13.3",
"object.assign": "^4.0.3",
"webpack": "^1.12.11",
"webpack-dev-server": "^1.14.1"
},
"homepage": "https://github.com/planttheidea/courier#readme",
"keywords": [
"http",
"request",
"courier",
"http-courier",
"xhr",
"fetch"
],
"license": "MIT",
"main": "lib/index.js",
"name": "http-courier",
"repository": {
"type": "git",
"url": "git+https://github.com/planttheidea/courier.git"
},
"scripts": {
"build": "NODE_ENV=development ./node_modules/webpack/bin/webpack.js --progress --colors",
"build-minified": "NODE_ENV=production ./node_modules/webpack/bin/webpack.js --progress --colors --config=webpack.config.minified.js",
"compile": "./node_modules/babel-cli/lib/babel/index.js -d lib/ src/",
"dev": "./node_modules/webpack-dev-server/bin/webpack-dev-server.js --progress --colors",
"dist": "npm run compile && npm run build && npm run build-minified",
"test": "NODE_ENV=test ./node_modules/webpack-dev-server/bin/webpack-dev-server.js --progress --colors --config=webpack.config.test.js"
},
"version": "1.0.0-alpha"
}