forked from QianmiOpen/iflux2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.24 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
{
"name": "iflux2",
"version": "1.4.5",
"description": "Reactive state container (based on immutable) for React or ReactNative, inspired by mapreduce.",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "./node_modules/.bin/jest --verbose",
"coverage": "./node_modules/.bin/jest --coverage",
"compile": "./node_modules/.bin/tsc",
"watch": "./node_modules/.bin/tsc -w",
"build:core": "node_modules/.bin/babel --ignore build/contrib build --out-dir dist",
"build:contrib": "node_modules/.bin/babel build/contrib --out-dir contrib",
"type": "./scripts/type.sh",
"clean": "rm -rf ./build && rm -rf contrib && rm -rf dist && rm -rf coverage",
"release": "npm run compile && npm run build:core && npm run build:contrib && npm run type"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/examples/"
],
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
},
"author": "hufeng",
"license": "BSD",
"dependencies": {
"@types/jest": "^18.1.1",
"@types/node": "^7.0.5",
"events": "^1.1.0",
"immutable": "^3.8.1",
"object-assign": "^4.1.1"
},
"files": [
"README.md",
"dist",
"contrib"
],
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-jest": "^19.0.0",
"babel-plugin-syntax-object-rest-spread": "^6.13.0",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-es2015-modules-commonjs": "^6.23.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"jest-cli": "^19.0.2",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-test-renderer": "^15.4.2",
"ts-jest": "^19.0.0",
"typescript": "^2.2.1"
},
"repository": {
"type": "git",
"url": "https://github.com/QianmiOpen/iflux2.git"
},
"keywords": [
"Reactive",
"state",
"React",
"ReactNative"
]
}