-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
34 lines (34 loc) · 942 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
{
"name": "nanoflux",
"description": "nanoflux is a very lightweight (about 3 KiB!) agnostic full Flux implementation.",
"version": "1.1.1",
"author": "Oliver Hager",
"email": "[email protected]",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/ohager/nanoflux"
},
"keywords": [
"flux"
],
"license": "MIT",
"devDependencies": {
"browserify": "^11.0.1",
"gulp": "^3.9.1",
"gulp-browserify": "^0.5.1",
"gulp-jasmine": "^2.0.1",
"gulp-preprocess": "^1.2.0",
"gulp-rename": "^1.2.2",
"gulp-run-sequence": "^0.3.2",
"gulp-uglify": "^1.4.1",
"jasmine-core": "^2.3.4",
"jasmine-node": "^1.14.5",
"object-assign": "^4.0.1"
},
"scripts": {
"test": "node ./node_modules/jasmine-node/lib/jasmine-node/cli.js ./spec --verbose",
"benchmark": "node ./perf/benchmark.js",
"release" : "gulp"
}
}