-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.16 KB
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
{
"_help": {
"npm run build": "build to dist",
"npm login": "before publishing",
"npm publish": "publish to npm"
},
"name": "dd-rx-state",
"version": "1.1.0",
"description": "Redux-like state handling, but created with rxjs and allowing for less but typesafe boilerplate with typescript.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "tslint -p .",
"test:w": "jest --watchAll",
"test": "jest"
},
"jest": {
"preset": "ts-jest",
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.spec.json"
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/rlexa/dd-rx-state.git"
},
"keywords": [
"rxjs",
"typescript"
],
"author": "Alex Rempel",
"license": "MIT",
"bugs": {
"url": "https://github.com/rlexa/dd-rx-state/issues"
},
"homepage": "https://github.com/rlexa/dd-rx-state#readme",
"devDependencies": {
"@types/jest": "^25.2.3",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"ts-jest": "^26.1.0",
"tslint": "^6.1.2",
"typescript": "~3.8.3"
},
"dependencies": {
"rxjs": "^6.5.5"
}
}