forked from takefumi-yoshii/redux-aggregate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.41 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
{
"name": "@opt-tech/redux-aggregate",
"version": "2.3.2",
"description": "The helper module making Redux more usable.",
"main": "dist/index.js",
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"test": "NODE_ENV=test jest",
"test:watch": "NODE_ENV=test jest --watch",
"prettier": "prettier \"src/**/*.ts\" \"typings/**/*.ts\" \"__tests__/**/*.ts\" --write",
"pub": "npm publish --access public ./",
"pub-beta": "npm publish --access public --tag=beta ./"
},
"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.4"
},
"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": "^3.6.2",
"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
}
}