-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.55 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
{
"name": "react-inject-props",
"description": "Inject props to your react component.",
"version": "1.0.14",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"license": "MIT",
"author": {
"name": "awaw00",
"email": "[email protected]"
},
"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"
},
"peerDependencies": {
"inversify": "^4.13.0",
"react": "^16.4.2",
"reflect-metadata": "^0.1.12"
},
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/enzyme": "^3.1.13",
"@types/enzyme-adapter-react-16": "^1.0.3",
"@types/mocha": "^5.2.5",
"@types/react": "^16.4.13",
"@types/sinon": "^5.0.2",
"chai": "^4.1.2",
"cross-env": "^5.2.0",
"enzyme": "^3.5.1",
"enzyme-adapter-react-16": "^1.4.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",
"react": "^16.4.2",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.4.2",
"reflect-metadata": "^0.1.12",
"rimraf": "^2.6.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"
}
}