-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
54 lines (54 loc) · 1.36 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
{
"name": "redux-aggregate",
"version": "2.1.2",
"description": "The helper module making Redux more usable.",
"main": "dist/index.js",
"typings": "typings/index.d.ts",
"scripts": {
"prepare": "npm run build",
"build": "tsc src/index.ts --outDir ./dist",
"test": "NODE_ENV=test jest",
"test:watch": "NODE_ENV=test jest --watch",
"prettier": "prettier \"src/**/*.ts\" \"typings/**/*.ts\" \"__tests__/**/*.ts\" --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/takefumi-yoshii/redux-aggregate.git"
},
"author": "takefumi-yoshii",
"license": "MIT",
"bugs": {
"url": "https://github.com/takefumi-yoshii/redux-aggregate/issues"
},
"homepage": "https://github.com/takefumi-yoshii/redux-aggregate#readme",
"dependencies": {
"redux": "4.0.1"
},
"devDependencies": {
"@types/jest": "^23.1.0",
"@types/node": "9.4.6",
"jest": "^23.1.0",
"prettier": "^1.13.7",
"ts-jest": "^22.4.6",
"ts-node": "5.0.0",
"typescript": ">=2.8.0",
"typescript-eslint-parser": "14.0.0"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "./node_modules/ts-jest/preprocessor.js"
},
"testMatch": [
"**/__tests__/*.(ts|tsx)"
]
},
"prettier": {
"semi": false,
"singleQuote": true
}
}