-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.18 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.18 KB
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
{
"name": "gooey-core",
"version": "0.0.0",
"description": "Hierarchical PubSub data synchronization solution for ES6",
"main": "lib/index.js",
"scripts": {
"build": "gulp compile",
"test": "gulp test",
"preinstall": "npm install --ignore-scripts && npm run build"
},
"repository": {
"type": "git",
"url": "git://github.com/slurmulon/gooey"
},
"keywords": [
"data",
"binding",
"pub",
"sub",
"publish",
"subscribe",
"reactive",
"react",
"event-driven",
"event"
],
"author": "MadHax",
"license": "MIT",
"bugs": {
"url": "https://github.com/slurmulon/gooey/issues"
},
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-plugin-syntax-flow": "^6.5.0",
"babel-plugin-transform-flow-strip-types": "^6.7.0",
"babel-plugin-typecheck": "^3.8.0",
"babel-preset-es2015": "^6.6.0",
"browserify": "^13.0.0",
"gulp": "~3.9.0",
"gulp-babel": "^6.1.2",
"gulp-shell": "^0.5.1",
"gulp-uglify": "^1.5.1",
"istanbul": "^0.4.3",
"mocha": "~2.5.3",
"nyc": "^6.4.4",
"should": "~8.4.0",
"vinyl-source-stream": "^1.1.0"
},
"dependencies": {
"json-where": "1.1.1"
}
}