-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.04 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
{
"name": "capsule",
"version": "0.0.0",
"description": "A state container based on Flux, but a simpler concept than Redux.",
"main": "dist/Capsule.js",
"repository": "https://github.com/aikar/capsule",
"author": "Daniel Ennis <[email protected]>",
"license": "MIT",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rm -rf dist/; gulp build",
"prepublish": "rm -rf dist/; mkdir dist/; touch dist/.npmignore; gulp prepublish"
},
"devDependencies": {
"babel-core": "^6.23.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-1": "^6.22.0",
"flow-bin": "^0.39.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-bash-completion": "^1.1.0",
"gulp-cli": "^1.2.2",
"gulp-flowtype": "aikar/gulp-flowtype",
"gulp-license-check": "^1.1.2",
"gulp-notify": "^3.0.0",
"gulp-sourcemaps": "^2.4.1",
"gulp-umd": "^0.2.0",
"gulp-util": "^3.0.8",
"gulp-watch": "^4.3.11"
},
"dependencies": {}
}