forked from flowhub/the-graph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.9 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "the-graph",
"version": "0.4.4",
"description": "flow-based programming graph editing",
"author": "Forrest Oliphant, the Grid",
"license": "MIT",
"main": "build/index.js",
"dependencies": {
"fbp": "^1.5.0",
"font-awesome": "^4.6.3",
"hammerjs": "^2.0.8",
"klayjs": "^0.4.1",
"lodash.clone": "^4.5.0",
"lodash.throttle": "^4.1.1",
"postinstall-build": "^2.1.2",
"react-hammerjs": "^0.5.0",
"react-redux": "^4.4.5",
"redux": "^3.6.0",
"redux-logger": "^2.6.1",
"redux-thunk": "^2.1.0"
},
"peerDependencies": {
"react": "^15.0.0",
"react-dom": "^15.0.0",
"react-tap-event-plugin": "^1.0.0"
},
"devDependencies": {
"@kadira/storybook": "^2.20.1",
"@kadira/storybook-addon-knobs": "^1.2.3",
"ava": "^0.16.0",
"babel-cli": "^6.16.0",
"babel-eslint": "^7.0.0",
"babel-jest": "^15.0.0",
"babel-plugin-tcomb": "^0.3.16",
"babel-plugin-typecheck": "^3.9.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"chai": "^3.5.0",
"create-index": "^0.1.3",
"enzyme": "^2.4.1",
"eslint": "^3.6.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^2.0.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"flow-bin": "^0.33.0",
"font-awesome-webpack": "0.0.4",
"git-directory-deploy": "^1.5.1",
"glob": "^7.1.0",
"grunt": "~1.0.1",
"grunt-bower-install-simple": "^1.2.3",
"grunt-browserify": "~5.0.0",
"grunt-contrib-connect": "~1.0.2",
"grunt-contrib-jshint": "~1.0.0",
"grunt-contrib-watch": "~1.0.0",
"grunt-exec": "~1.0.1",
"jsdom": "^9.6.0",
"jsx-test": "^2.0.1",
"less": "^2.7.1",
"react-addons-test-utils": "^15.3.2",
"react-test-renderer": "^15.3.2",
"rimraf": "^2.5.4",
"sinon": "^1.17.6",
"stylus": "~0.54.5",
"worker-loader": "^0.7.1"
},
"scripts": {
"build:babel": "babel ./src --out-dir ./build",
"lint": "eslint 'src/**/*.js'",
"test": "NODE_ENV=test ava --serial --verbose ./test",
"test:watch": "NODE_ENV=test ava --serial --verbose --watch ./test",
"postversion": "git push && git push --tags",
"storybook": "start-storybook -p 9009 -s ./node_modules/",
"build-storybook": "build-storybook",
"postinstall": "postinstall-build lib 'npm run build:babel'",
"gh-pages:clean": "rimraf _gh-pages",
"gh-pages:build": "build-storybook -o _gh-pages",
"gh-pages:publish": "git-directory-deploy --directory _gh-pages",
"gh-pages": "npm run gh-pages:clean && npm run gh-pages:build && npm run gh-pages:publish"
},
"repository": {
"type": "git",
"url": "git://github.com/the-grid/the-graph.git"
},
"standard": {
"parser": "babel-eslint"
},
"ava": {
"require": [
"babel-register",
"./test/helpers/setup.js"
],
"babel": {
"babelrc": true
}
},
"keywords": [
"graph"
]
}