-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
55 lines (55 loc) · 1.63 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
{
"name": "reindex-js",
"version": "0.4.0",
"description": "Client library for Reindex",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib dist",
"build": "babel src --out-dir lib",
"build:umd": "webpack src/index.js dist/reindex.js && NODE_ENV=production webpack src/index.js dist/reindex.min.js",
"lint": "eslint src test",
"test": "npm run lint && npm run testonly",
"testonly": "NODE_ENV=test mocha --compilers js:babel/register --recursive",
"test:watch": "NODE_ENV=test mocha --compilers js:babel/register --recursive --watch",
"prepublish": "npm run lint && npm run test && npm run clean && npm run build && npm run build:umd"
},
"repository": {
"type": "git",
"url": "https://github.com/reindexio/reindex-js.git"
},
"keywords": [
"Reindex",
"react",
"relay"
],
"author": "Reindex <[email protected]> (https://www.reindex.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/reindexio/reindex-js/issues"
},
"homepage": "https://www.reindex.io/",
"devDependencies": {
"babel": "^5.8.23",
"babel-core": "^5.8.25",
"babel-eslint": "^3.1.15",
"babel-loader": "^5.1.4",
"escope": "^3.3.0",
"eslint": "^0.23",
"eslint-config-airbnb": "0.0.6",
"eslint-plugin-react": "^2.3.0",
"expect": "^1.6.0",
"mocha": "^2.2.5",
"rimraf": "^2.3.4",
"webpack": "^1.9.6",
"webpack-dev-server": "^1.8.2"
},
"dependencies": {
"babel-runtime": "^5.8.25",
"bluebird": "^2.9.34",
"fbemitter": "^2.0.0",
"fbjs": "0.1.0-alpha.7",
"invariant": "^2.1.0",
"isomorphic-fetch": "^2.1.1",
"winchan": "^0.1.1"
}
}