-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.49 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": "@awaw00/rxstore",
"version": "1.1.7",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"license": "MIT",
"author": {
"name": "awaw00",
"email": "[email protected]"
},
"keywords": [
"rxjs",
"reactive",
"di",
"state management",
"store",
"redux",
"rx",
"dependency inject",
"react",
"typescript"
],
"scripts": {
"clean": "rimraf lib && rimraf es",
"ts:lib": "tsc --module commonjs --outDir lib",
"ts:es": "tsc --module esnext --outDir es",
"build": "npm run clean && npm run ts:lib",
"test": "cross-env NODE_ENV=test mocha --opts mocha.opts",
"test:watch": "cross-env NODE_ENV=test mocha --opts mocha.opts --watch",
"deploy:example": "gh-pages -d examples/_dist"
},
"peerDependencies": {
"inversify": "^4.13.0",
"reflect-metadata": "^0.1.12",
"rxjs": "^6.3.2"
},
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/mocha": "^5.2.5",
"@types/sinon": "^5.0.2",
"chai": "^4.1.2",
"cross-env": "^5.2.0",
"gh-pages": "^2.0.0",
"inversify": "^4.13.0",
"jsdom": "^12.0.0",
"jsdom-global": "^3.0.2",
"mocha": "^5.2.0",
"mocha-clean": "^1.0.0",
"object-assign": "^4.1.1",
"promise": "^8.0.1",
"raf": "^3.4.0",
"reflect-metadata": "^0.1.12",
"rimraf": "^2.6.2",
"rxjs": "^6.3.2",
"sinon": "^6.2.0",
"ts-node": "^7.0.1",
"tslint-config-prettier": "^1.15.0",
"typescript": "^3.0.3",
"whatwg-fetch": "^2.0.4"
}
}