-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.47 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
{
"name": "udeo",
"version": "0.0.0-alpha.6",
"description": "RxJS based state streams",
"main": "lib/index.js",
"scripts": {
"lint": "eslint src && eslint test",
"build": "npm run lint && rm -rf lib && babel src -d lib",
"build_tests": "rm -rf temp && babel test -d temp",
"clean": "rimraf ./lib; rimraf ./temp;",
"test": "npm run build && npm run build_tests && mocha temp",
"prepublish": "npm test"
},
"files": [
"lib",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mcoetzee/udeo.git"
},
"keywords": [
"Rx",
"RxJS",
"state",
"streams",
"unidirectional",
"data",
"flow",
"observable",
"reactive",
"programming"
],
"author": "Markus Coetzee <mks.coetzee@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mcoetzee/udeo/issues"
},
"homepage": "https://github.com/mcoetzee/udeo#readme",
"peerDependencies": {
"rxjs": "^5.0.0-beta.6"
},
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-eslint": "^6.0.3",
"babel-plugin-transform-es2015-modules-commonjs": "^6.7.4",
"babel-plugin-transform-function-bind": "^6.5.2",
"babel-plugin-transform-object-rest-spread": "^6.6.5",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.7.2",
"chai": "^3.5.0",
"eslint": "^2.10.2",
"mocha": "^2.4.5",
"rimraf": "^2.5.2",
"rxjs": "^5.0.0-beta.6"
}
}