-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 971 Bytes
/
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-typescript-module",
"version": "1.0.2",
"description": "A single function that returns a reducer, action creators",
"keywords": [
"redux",
"reducers",
"module",
"class",
"action",
"flux"
],
"main": "lib/index.js",
"module": "es/index.js",
"typings": "lib/index.d.ts",
"repository": "Zalastax/redux-typescript-module",
"scripts": {
"rimraf": "rimraf lib es",
"lint": "tslint src/index.ts tests/index.ts",
"test": "(cd tests && ts-node ../node_modules/alsatian/cli/alsatian-cli.js index.ts)",
"build": "(cd src && tsc && tsc -m ES6 --outDir ../es)",
"prepublish": "yarn rimraf && yarn lint && yarn test && yarn build"
},
"author": "Pierre Kraft",
"license": "MIT",
"devDependencies": {
"alsatian": "^1.3.1",
"rimraf": "^2.6.1",
"ts-node": "^3.0.6",
"tslint": "^5.4.3",
"typescript": "^2.3.4",
"typings-tester": "^0.2.2"
}
}