-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "redux-delta",
"version": "0.1.3",
"description": "Helper methods and cli to remove the boilerplate of Redux project setup and development.",
"main": "dist/package/umd/index.js",
"module": "dist/package/es/index.js",
"scripts": {
"lint": "tslint -t codeFrame 'src/**/*.ts'",
"test": "jest",
"test:watch": "jest --watch",
"test:prod": "npm run lint && npm run test -- --coverage --no-cache",
"start": "concurrently \"tsc --module commonjs -w\" \"nodemon examples/index\"",
"docs": "http-server -p 8080 -c-1 ./dist/docs",
"build:package": "rm -rf ./dist/package && tsc --module commonjs && rollup -c rollup.config.ts && node make-package.js",
"build:docs": "rm -rf ./dist/docs && typedoc --options typedoc.json",
"lint-staged": "lint-staged"
},
"pre-commit": [
"test",
"lint-staged"
],
"lint-staged": {
"{*.ts,*.js}": "npm run lint"
},
"bin": {
"redux-delta": "./cli/cli.js"
},
"keywords": [
"redux",
"middleware"
],
"author": "Ryan P. Hansen",
"repository": {
"type": "git",
"url": "https://github.com/rphansen91/redux-delta"
},
"license": "ISC",
"dependencies": {
"commander": "^2.16.0",
"ncp": "^2.0.0"
},
"devDependencies": {
"@types/jest": "^23.3.1",
"concurrently": "^3.6.1",
"jest": "^23.4.2",
"lint-staged": "^7.2.2",
"lodash.camelcase": "^4.3.0",
"node-fetch": "^2.2.0",
"pre-commit": "^1.2.2",
"prettier": "^1.14.2",
"redux": "^4.0.0",
"rollup": "^0.64.1",
"rollup-plugin-commonjs": "^9.1.5",
"rollup-plugin-json": "^3.0.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.16.1",
"ts-jest": "^23.1.3",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.14.0",
"tslint-config-standard": "^7.1.0",
"typescript": "^3.0.1"
},
"prettier": {
"semi": false,
"singleQuote": false
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 95,
"lines": 95,
"statements": 95
}
},
"collectCoverage": true,
"testURL": "http://localhost/",
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
],
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"js"
]
}
}