-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
90 lines (90 loc) · 2.81 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "loxe",
"version": "0.5.0",
"description": "Flux architecture incorporates FRP library implementation. Observable is awesome!",
"author": "ahomu",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/ahomu/Loxe"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ahomu/Loxe/issues"
},
"homepage": "https://github.com/ahomu/Loxe",
"scripts": {
"start": "npm run watch & npm run serve --",
"postinstall": "npm run compile",
"test": "npm run lint && karma start --singleRun",
"tdd": "karma start",
"clean": "rm -rf lib/*",
"lint": "eslint ./src",
"serve": "serve ./",
"unstable": "npm run test && npm run build && npm publish . --tag unstable",
"release": "npm run test && npm run build && npm publish",
"watch": "watchify example/index.js -dv -t [babelify --modules commonStrict --stage 0] -s Loxe -o ./example.js",
"concat": "browserify src/index.js -p licensify -t [babelify --modules commonStrict --stage 0] -t browserify-shim -s Loxe -o ./loxe.js",
"minify": "uglifyjs ./loxe.js -m -c --comments '/Modules in this bundle/' -o ./loxe.min.js",
"compile": "babel --modules commonStrict --stage 0 --ignore '**/__tests__/*' -d ./lib ./src",
"build": "npm run concat && npm run minify",
"patch": "npm version patch -m \"bump v%s !\"",
"minor": "npm version minor -m \"bump v%s !!\"",
"major": "npm version major -m \"bump v%s !!!\""
},
"browserify-shim": {
"react": "global:React"
},
"files": [
"src",
"loxe.js",
"loxe.min.js",
"README.md",
"package.json"
],
"dependencies": {
"babel": "^5.4.7",
"clone": "^1.0.2",
"object-assign": "^3.0.0",
"shallowequal": "^0.2.1"
},
"peerDependencies": {
"kefir": "^2.5.x",
"kefir.combinetemplate": "^0.1.x",
"react": "^0.13.x",
"rx-lite": "^2.5.x",
"rx.observable.combinetemplate": "^0.2.x"
},
"devDependencies": {
"babel": "^5.4.7",
"babel-eslint": "^3.0.1",
"babel-plugin-espower": "^0.4.1",
"babel-runtime": "^5.0.2",
"babelify": "^6.0.2",
"browserify": "^9.0.3",
"browserify-shim": "^3.8.5",
"envify": "^3.4.0",
"eslint": "^0.22.1",
"eslint-plugin-react": "^2.5.0",
"espowerify": "^0.10.0",
"karma": "^0.12.31",
"karma-browserify": "^4.0.0",
"karma-chrome-launcher": "^0.1.7",
"karma-cli": "0.0.4",
"karma-firefox-launcher": "^0.1.6",
"karma-mocha": "^0.1.10",
"karma-safari-launcher": "^0.1.1",
"kefir": "^2.5.x",
"kefir.combinetemplate": "^0.1.2",
"licensify": "^1.2.0",
"mocha": "^2.2.1",
"power-assert": "^0.10.2",
"react": "^0.13.3",
"rx-lite": "^2.5.2",
"rx.observable.combinetemplate": "^0.2.3",
"serve": "^1.4.0",
"sinon": "^1.14.1",
"uglifyjs": "^2.4.10",
"watchify": "^2.4.0"
}
}