-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.11 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
{
"name": "@aikoven/recombine",
"version": "0.2.1",
"description": "Utilities for combining Redux reducers",
"main": "lib/index.js",
"module": "es/index.js",
"typings": "lib/index.d.ts",
"files": [
"src",
"es",
"lib"
],
"scripts": {
"clean": "rimraf lib es",
"lint": "tslint -c tslint.json src/**/*.ts tests/**/*.ts",
"test": "ts-node -P tsconfig.tests.json node_modules/tape/bin/tape tests/*.ts",
"build:es": "tsc",
"build:lib": "babel es --out-dir lib && cpx \"es/*.d.ts\" lib",
"build": "npm run build:es && npm run build:lib",
"prepublish": "npm run clean && npm run lint && npm test && npm run build"
},
"keywords": [
"redux",
"combine",
"reducer"
],
"repository": "aikoven/recombine",
"author": "Daniel Lytkin <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/tape": "^4.2.29",
"babel-cli": "^6.24.0",
"babel-preset-es2015": "^6.24.0",
"cpx": "^1.5.0",
"redux": "^3.6.0",
"rimraf": "^2.6.1",
"tape": "^4.6.3",
"ts-node": "^6.1.1",
"tslint": "^5.10.0",
"typescript": "^2.9.1"
}
}