-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 1.12 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
{
"name": "ballade",
"version": "1.2.8",
"description": "For unidirectional data flow.",
"keywords": [
"flux",
"react",
"action",
"store",
"cache",
"immutable",
"dispatch"
],
"main": "src/ballade.js",
"scripts": {
"build": "./node_modules/.bin/gulp",
"lint": "./node_modules/.bin/gulp lint",
"test": "cd test; ../node_modules/.bin/mocha schema-mutable.js; ../node_modules/.bin/mocha schema-immutable.js; cd ./mutable; ../../node_modules/.bin/mocha index.js; cd ../immutable; ../../node_modules/.bin/mocha index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/chenmnkken/ballade"
},
"bugs": "https://github.com/chenmnkken/ballade/issues",
"author": "chenmnkken@gmail.com",
"license": "MIT",
"devDependencies": {
"browserify": "12.0.1",
"eslint-config-standard": "7.1.0",
"eslint-plugin-promise": "3.5.0",
"eslint-plugin-standard": "2.1.1",
"gulp": "3.9.0",
"gulp-eslint": "3.0.1",
"gulp-uglify": "1.5.1",
"immutable": "3.7.6",
"mocha": "2.3.4",
"vinyl-buffer": "1.0.0",
"vinyl-source-stream": "1.1.0"
}
}