-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.51 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": "theme-provider",
"version": "1.0.8",
"description": "React helpers for building themes.",
"author": "Jordan Schroter",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jschr/theme-provider"
},
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"lint": "tslint ./src --config ./tslint.json --project ./tsconfig.json",
"build": "rimraf ./lib && tsc",
"prepublish": "npm run lint && npm run build",
"test": "mocha -r ts-node/register -r jsdom-global/register -S tests/**/*.spec.ts[x]"
},
"peerDependencies": {
"react": "^15.3.0",
"react-dom": "^15.3.0",
"react-redux": "^3.0.0 || ^4.0.0 || ^5.0.0",
"redux": "^3.0.0"
},
"dependencies": {
"invariant": "^2.2.1",
"object-path": "^0.11.4",
"object-path-immutable": "^0.5.1",
"prop-types": "^15.5.10"
},
"devDependencies": {
"@types/enzyme": "^2.7.5",
"@types/expect": "^1.20.0",
"@types/invariant": "^2.2.28",
"@types/jsdom": "^2.0.30",
"@types/mocha": "^2.2.40",
"@types/prop-types": "^15.5.1",
"@types/react-redux": "^4.4.43",
"cross-env": "^3.1.4",
"enzyme": "^2.7.1",
"expect": "^1.20.2",
"jsdom": "^9.11.0",
"jsdom-global": "^2.1.1",
"mocha": "^3.2.0",
"react": "^15.4.2",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.4.2",
"react-redux": "^5.0.3",
"redux": "^3.6.0",
"rimraf": "^2.5.4",
"ts-node": "^2.1.0",
"tslint": "^4.4.2",
"typescript": "^2.2.1"
}
}