-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
40 lines (40 loc) · 1.06 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": "fluxiny",
"version": "1.0.12",
"description": "Implementation of the Flux design pattern / architecture",
"main": "lib/fluxiny.min.js",
"scripts": {
"build": "uglifyjs -o ./lib/fluxiny.min.js ./src/index.js && npm run copy-for-example",
"copy-for-example": "cpy './lib/fluxiny.min.js' ./example/src/vendor",
"watch": "watch 'npm run build' src/",
"dev": "npm run build && npm run watch",
"test": "mocha --colors ./test/*.spec.js"
},
"repository": {
"type": "git",
"url": "https://github.com/krasimir/fluxiny.git"
},
"keywords": [
"flux",
"react"
],
"author": {
"name": "Krasimir Tsonev",
"email": "[email protected]",
"web": "http://krasimirtsonev.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/krasimir/fluxiny/issues"
},
"homepage": "https://github.com/krasimir/fluxiny",
"devDependencies": {
"chai": "3.4.1",
"cpy": "3.4.1",
"mocha": "2.3.4",
"sinon": "1.17.2",
"sinon-chai": "2.8.0",
"uglify-js": "1.3.5",
"watch": "0.16.0"
}
}