-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
100 lines (100 loc) · 2.8 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
91
92
93
94
95
96
97
98
99
100
{
"name": "rxact",
"version": "1.0.0-beta.0",
"description": "an observable application management for Javascript apps",
"keywords": [
"observable",
"stream",
"state",
"rxact"
],
"main": "./lib/index.js",
"module": "./es/index.js",
"jsnext:main": "./es/index.js",
"repository": "[email protected]:Darmody/rxact.git",
"author": "Darmody <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Darmody/rxact/issues"
},
"private": false,
"scripts": {
"build": "yarn build:lib && yarn build:es && yarn build:umd && yarn build:umd:min && yarn build:flow",
"build:lib": "NODE_ENV=production BABEL_ENV=lib babel src --out-dir lib --ignore __tests__",
"build:es": "cross-env NODE_ENV=production BABEL_ENV=es babel src --out-dir es --ignore __tests__",
"build:umd": "cross-env NODE_ENV=development webpack src/index.js dist/rxact.js",
"build:umd:min": "cross-env NODE_ENV=production webpack src/index.js dist/rxact.min.js",
"build:flow": "cp src/*.js.flow lib && cp src/observable/*.js.flow lib/observable && cp src/*.js.flow es && cp src/observable/*.js.flow es/observable",
"clean": "rimraf dist lib es",
"prepublish": "yarn lint && yarn test && yarn flow && yarn clean && yarn build",
"lint": "eslint src",
"flow": "flow check",
"test": "jest",
"test:watch": "jest --watch",
"coverage": "jest --coverage"
},
"files": [
"README.md",
"es",
"lib",
"dist"
],
"dependencies": {
"symbol-observable": "^1.0.4"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.0",
"babel-jest": "^21.0.2",
"babel-jest-assertions": "^0.0.1",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-flow": "^6.23.0",
"coveralls": "^3.0.0",
"cross-env": "^5.0.5",
"eslint": "^4.6.1",
"eslint-loader": "^1.9.0",
"eslint-plugin-flowtype": "^2.35.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jest": "^21.1.0",
"flow-bin": "^0.54.1",
"jest": "^21.0.2",
"most": "^1.7.2",
"rimraf": "^2.6.2",
"rxjs": "^5.4.3",
"webpack": "^3.5.6",
"zen-observable": "^0.6.0"
},
"jest": {
"moduleFileExtensions": [
"js"
],
"moduleDirectories": [
"node_modules",
"src"
],
"testMatch": [
"**/__tests__/**/?(*.)(spec|test).js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/__tests__/"
]
},
"moduleRoots": [
"src"
],
"npmName": "rxact",
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js"
]
}
]
}