This repository has been archived by the owner on Nov 23, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 1.88 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
{
"name": "react-transact",
"version": "1.0.0",
"description": "Simple, effortless way to fetch data and make them available to React components.",
"repository": {
"type": "git",
"url": "https://github.com/pressly/react-transact"
},
"main": "index.js",
"files": [
"umd",
"lib",
"index.js",
"redux.js",
"effects.js",
"router.js",
"LICENSE",
"README.md"
],
"scripts": {
"clean": "rm -rf lib umd",
"build": "npm run clean && npm run compile:ts && npm run compile:core && npm run compile:redux",
"release": "npm test && npm run build && xyz --repo [email protected]:pressly/react-transact.git",
"compile:ts": "tsc",
"compile:core": "webpack -p lib/core.js umd/core.js --library ReactTransact",
"compile:redux": "webpack -p lib/redux.js umd/redux.js --library ReactTransactRedux",
"test": "npm run compile:ts && tape 'test/**/*.js'",
"test:watch": "concurrently 'tsc -w' 'nodemon --delay 2000ms --exec tape \"test/**/*.js\"'",
"readme:toc": "doctoc README.md"
},
"author": {
"name": "Jack Hsu",
"email": "[email protected]",
"url": "https://github.com/jaysoo",
"company": "https://pressly.com"
},
"license": "ISC",
"keywords": [
"react"
],
"dependencies": {},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0",
"react-router": "^2.0.0"
},
"devDependencies": {
"babel-loader": "6.2.4",
"babel-preset-es2015": "6.6.0",
"concurrently": "2.0.0",
"doctoc": "1.0.0",
"enzyme": "2.2.0",
"jsdom": "8.4.1",
"nodemon": "1.9.1",
"react": "15.0.1",
"react-addons-test-utils": "15.0.1",
"react-dom": "15.0.1",
"react-redux": "4.4.5",
"react-router": "2.4.0",
"redux": "3.5.2",
"sinon": "1.17.3",
"tape": "4.5.1",
"typescript": "1.8.9",
"typings": "0.7.9",
"webpack": "1.13.0",
"xyz": "0.5.0",
"yargs": "4.7.1"
}
}