-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 1.25 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
{
"name": "redux-reducer-effects",
"version": "2.0.3",
"scripts": {
"compileTypescript": "mkdir -p ./target-typescript && tsc",
"compileBrowserify": "mkdir -p ./target && browserify ./target-typescript/example.js --outfile ./target/example.js",
"test": "mocha --compilers ts:ts-node/register `((test -z $WATCH) && :) || echo '-w'` src/test.ts",
"copyHtml": "cp ./src/index.html ./target/index.html",
"tslint": "tslint --exclude 'node_modules/**' '**/*.ts'",
"clean": "rm -rf ./target ./target-typescript",
"prepublish": "npm run -s clean && npm run compileTypescript",
"compile": "npm run clean && npm run tslint && npm run compileTypescript && npm run compileBrowserify && npm run copyHtml"
},
"typings": "target-typescript/redux-reducer-effects",
"main": "target-typescript/redux-reducer-effects",
"files": [
"target-typescript"
],
"devDependencies": {
"@reactivex/rxjs": "^5.0.0-beta.12",
"@types/chai": "^3.4.32",
"@types/mocha": "^2.2.31",
"@types/redux": "^3.5.29",
"@types/whatwg-fetch": "0.0.30",
"browserify": "^13.1.0",
"chai": "^3.5.0",
"mocha": "^3.0.2",
"redux": "^3.6.0",
"ts-node": "^1.3.0",
"tslint": "^3.15.1",
"typescript": "^2.0.3",
"typings": "^1.3.3"
}
}