-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.95 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
69
70
71
{
"name": "retax-core",
"version": "1.2.1",
"description": "Universal React Redux Framework",
"main": "lib/index.js",
"jsnext:main": "es/index.js",
"typings": "libTs/index.d.ts",
"scripts": {
"build": "builder run build",
"lint": "builder run lint",
"prepublish": "npm test && builder run build",
"pretest": "npm run typings && builder run lint",
"preversion": "npm test && builder run build",
"start": "builder run build:commonjs:watch",
"tdd": "builder run test:all:watch",
"test:once": "builder run test:all",
"test": "builder run test:all:coverage",
"typings": "builder run typings:install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/retaxJS/retax-core"
},
"keywords": [
"react",
"redux",
"framework",
"universal",
"retax",
"core"
],
"author": "Thomas Hourlier <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/retaxJS/retax-core/issues"
},
"homepage": "https://github.com/retaxJS/retax-core",
"dependencies": {
"builder-ts-library": "~0.0.6",
"immutable": "^3.8.0",
"inversify": "2.0.0-beta.10",
"inversify-dts": "3.0.0",
"js-cookie": "^2.1.0",
"redux": "^3.4.0",
"retax-utils": "^1.0.1"
},
"devDependencies": {
"builder-ts-library-dev": "~0.0.6",
"builder": "^2.9.1",
"enzyme": "^2.2.0",
"react-addons-test-utils": "^15.0.0",
"react-dom": "^0.14.0 || ^15.0.0-0",
"react-helmet": "^3.0.1",
"react-redux": "^4.4.5",
"react-router-redux": "^4.0.2",
"react-router": "^2.2.4",
"react": "^0.14.0 || ^15.0.0-0",
"redux-mock-store": "1.0.2"
},
"peerDependencies": {
"immutable": "^3.8.0",
"react-dom": "^0.14.0 || ^15.0.0-0",
"react-helmet": "^3.0.1",
"react-redux": "^4.4.5",
"react-router-redux": "^4.0.2",
"react-router": "^2.2.4",
"react": "^0.14.0 || ^15.0.0-0",
"redux": "^3.4.0",
"retax-utils": "^1.0.0"
}
}