This repository has been archived by the owner on Jan 11, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
90 lines (90 loc) · 2.78 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": "fluorine-lib",
"version": "5.0.0",
"main": "lib/index.js",
"jsnext:main": "es/index.js",
"files": [
"lib",
"es",
"dist",
"src"
],
"description": "Reactive state and side effect management for React using a single stream of actions",
"scripts": {
"test": "BABEL_ENV=commonjssimple mocha --compilers js:babel-register --recursive --require ./test/helpers/setup-browser-env.js",
"test:watch": "npm test -- --watch",
"test:cov": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"lint": "eslint src",
"clean": "rm -rf lib es dist",
"build:commonjs": "BABEL_ENV=commonjssimple babel src --out-dir lib",
"build:es": "babel src --out-dir es",
"build:umd": "NODE_ENV=development webpack src/index.js dist/fluorine.js",
"build:umd:min": "NODE_ENV=production webpack src/index.js dist/fluorine.min.js",
"build": "npm run build:commonjs && npm run build:es && npm run build:umd && npm run build:umd:min",
"prepublish": "npm run clean && npm run build",
"preversion": "npm run clean && npm run test",
"version": "npm run build",
"postversion": "git push && git push --tags",
"prebook": "gitbook install",
"book": "gitbook build",
"postbook": "cp ./docs/now.json _book/",
"book:watch": "gitbook serve"
},
"author": "Phil Plückthun <[email protected]> (https://github.com/philplckthun)",
"bugs": {
"url": "https://github.com/philplckthun/fluorine/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/philpl/fluorine.git"
},
"license": "CC0-1.0",
"keywords": [
"fluorine",
"flux",
"react",
"rx",
"reducer",
"state",
"side effect",
"manager",
"immutable"
],
"dependencies": {
"babel-core": "^6.18.2",
"rxjs": "^5.2.0",
"symbol-observable": "^1.0.4"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.2.5",
"babel-plugin-transform-es2015-modules-commonjs-simple": "^6.7.4",
"babel-plugin-transform-react-constant-elements": "^6.9.1",
"babel-plugin-transform-react-inline-elements": "^6.8.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-philpl": "^0.5.0",
"babel-register": "^6.16.0",
"coveralls": "^2.11.14",
"enzyme": "^2.4.1",
"eslint": "^3.6.1",
"eslint-config-excellence": "^1.17.0",
"eslint-plugin-mocha": "^4.5.1",
"eslint-plugin-react": "^6.3.0",
"expect": "^1.20.2",
"gitbook-cli": "^2.3.0",
"jsdom": "^9.5.0",
"mocha": "^3.1.0",
"nyc": "^10.0.0",
"react": "^15.4.1",
"react-addons-test-utils": "^15.4.1",
"react-dom": "^15.4.1",
"webpack": "^2.1.0-beta.13"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0-0"
},
"engines": {
"node": ">= 0.12.0"
}
}