-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
61 lines (61 loc) · 1.57 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
{
"name": "statex",
"version": "1.1.8",
"description": "State management library for modern web applications with unidirectional data flow and immutable uni-state (just like redux)",
"main": "dist/core/index.js",
"types": "dist/core/index.d.ts",
"scripts": {
"build": "npm run clean && tsc && npm run process",
"start": "tsc -w",
"process": "node ./scripts/process.js",
"clean": "node ./scripts/clean.js",
"prepublish": "npm run build",
"test": "jest"
},
"keywords": [],
"author": "Rinto Jose",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/rintoj/statex.git"
},
"bugs": {
"url": "https://github.com/rintoj/statex/issues"
},
"homepage": "https://github.com/rintoj/statex#readme",
"dependencies": {
"es6-symbol": "^3.1.1",
"reflect-metadata": "^0.1.10",
"seamless-immutable": "^7.1.2"
},
"devDependencies": {
"@angular/core": "^4.1.3",
"@types/jest": "^22.0.1",
"@types/node": "^7.0.52",
"@types/react": "^15.6.11",
"fs-extra": "^3.0.1",
"jest": "^22.0.4",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"resolvable": "^1.0.1",
"rimraf": "^2.6.1",
"rxjs": "^5.5.6",
"ts-jest": "^22.0.1",
"ts-node": "^3.3.0",
"tslint": "^5.3.2",
"tslint-no-unused-expression-chai": "0.0.3",
"typescript": "^2.6.2"
},
"jest": {
"moduleFileExtensions": [
"js",
"ts"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "src/.*\\.test\\.ts$",
"mapCoverage": true,
"collectCoverage": true
}
}