-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
53 lines (53 loc) · 1.76 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
{
"name": "repoint",
"version": "0.8.2",
"description": "Endpoint generator based on fetch",
"main": "lib/index.js",
"keywords": [
"fetch",
"rest-api",
"http"
],
"scripts": {
"lint": "eslint src",
"check": "npm run lint && npm run test",
"test": "babel-node test/index.js | tap-spec",
"dev": "webpack --config webpack.development.config.js --colors --progress --inline --watch",
"compile": "rimraf lib && babel -d lib/ src/",
"build:umd:dev": "webpack --config webpack.development.config.js",
"build:umd:prod": "NODE_ENV=production webpack --config webpack.production.config.js",
"build:umd": "rimraf dist && npm run build:umd:dev && npm run build:umd:prod",
"prepublish": "npm run check && npm run compile && npm run build:umd",
"analyze:prod": "NODE_ENV=production webpack --config webpack.production.config.js --json | node_modules/webpack-bundle-size-analyzer/webpack-bundle-size-analyzer"
},
"repository": {
"type": "git",
"url": "https://github.com/tokenvolt/repoint.git"
},
"author": "Alex Khrustalev",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.6.4",
"babel-core": "^6.6.4",
"babel-loader": "^6.2.4",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.6.0",
"clean-webpack-plugin": "^0.1.8",
"eslint": "^2.2.0",
"eslint-config-airbnb": "^6.0.2",
"eslint-loader": "^1.3.0",
"fetch-mock": "^4.1.1",
"nock": "^7.2.2",
"rimraf": "^2.5.2",
"tap-spec": "^4.1.1",
"tap-webpack-plugin": "^1.0.0",
"tape": "^4.5.0",
"webpack": "^1.12.14",
"webpack-bundle-size-analyzer": "^2.0.1"
},
"dependencies": {
"isomorphic-fetch": "^2.2.1",
"jquery-param": "^0.2.0",
"pluralize": "^1.2.1"
}
}