This repository has been archived by the owner on Sep 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.64 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
{
"name": "@ngfk/ts-redux",
"version": "2.1.0",
"description": "Typescript wrapper for Redux. Type safety and intellisense when creating reducers and dispatching actions.",
"main": "dist/index",
"typings": "index.d.ts",
"scripts": {
"start": "npm run test:watch",
"build": "tsc",
"build:watch": "npm run build -- --watch",
"test": "mocha --require ts-node/register test/**/*.spec.ts",
"test:watch": "npm run test -- --watch",
"clean": "rimraf ./dist",
"check": "npm run clean && npm run test && npm run build",
"preversion": "npm run check",
"prepublishOnly": "npm run check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ngfk/ts-redux.git"
},
"keywords": [
"typescript",
"redux",
"reducer",
"state"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ngfk/ts-redux/issues"
},
"homepage": "https://github.com/ngfk/ts-redux#readme",
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/mocha": "^2.2.44",
"chai": "^4.1.2",
"mocha": "^4.0.1",
"redux": "^3.7.2",
"rimraf": "^2.6.2",
"ts-node": "^3.3.0",
"typescript": "^2.6.1"
},
"peerDependencies": {
"redux": ">= 3.4.0"
},
"files": [
"dist",
"src",
"index.d.ts"
],
"prettier": {
"printWidth": 80,
"tabWidth": 4,
"singleQuote": true,
"trailingComma": "none",
"bracketSpacing": true,
"semi": true,
"useTabs": false
}
}