-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1021 Bytes
/
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
{
"name": "redux-property-graph",
"version": "0.3.0",
"description": "Basic property graph for redux",
"main": "index.js",
"scripts": {
"test": "mocha --compilers js:babel-register test/*.spec.js",
"build": "babel src --presets babel-preset-es2015 --out-dir .",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leviathantech/redux-property-graph.git"
},
"keywords": [
"redux",
"graph"
],
"author": "Sam Jayasinghe",
"license": "MIT",
"bugs": {
"url": "https://github.com/leviathantech/redux-property-graph/issues"
},
"homepage": "https://github.com/leviathantech/redux-property-graph#readme",
"dependencies": {
"lodash.omit": "^4.5.0",
"lodash.transform": "^4.6.0",
"uuid": "^3.0.0"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.16.3",
"chai": "^3.5.0",
"mocha": "^3.1.2"
}
}