-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.68 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
{
"name": "rx-fsa-development",
"version": "0.0.0-MOOT",
"description": "This TypeScript library provides factories for creating fully typed FSA-compliant Actions, reducers and RxJS utility operators.",
"repository": {
"type": "git",
"url": "git://github.com/patrimart/rx-fsa.git"
},
"keywords": [
"angular",
"react",
"flux",
"fsa",
"actions",
"ngrx",
"redux",
"typescript",
"action",
"reducer",
"rxjs",
"observables"
],
"author": "Patrick Martin",
"license": "MIT",
"bugs": {
"url": "https://github.com/patrimart/rx-fsa/issues"
},
"homepage": "https://github.com/patrimart",
"scripts": {
"build": "npm run _delPackageDir && tsc && npm run _copyPackageDeps && npm run _rollup",
"_delPackageDir": "rm -rf package/",
"_copyPackageDeps": "cp -f package-dist.json package/package.json && cp -f README.md package/",
"_rollup": "./node_modules/.bin/rollup -c rollup.es5.js && ./node_modules/.bin/rollup -c rollup.umd.js",
"test": "jest tests"
},
"devDependencies": {
"@angular/core": "~6.0.0",
"@ngrx/store": "~6.0.0",
"@types/jest": "~23.0.0",
"jest": "~23.1.0",
"prettier": "~1.13.0",
"rollup": "~0.59.0",
"rxjs": "~6.2.0",
"ts-jest": "~22.4.3",
"tslint": "~5.10.0",
"typescript": "~2.7.2"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"prettier": {
"tabWidth": 2,
"trailingComma": "all",
"parser": "typescript",
"printWidth": 120
}
}