-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.09 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
{
"name": "focal-redux",
"version": "0.0.1",
"description": "",
"keywords": [
"@grammarly/focal",
"redux"
],
"main": "dist/focal-redux.umd.js",
"module": "dist/focal-redux.es5.js",
"typings": "dist/types/focal-redux.d.ts",
"files": [
"dist"
],
"author": "A-gambit <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/A-gambit/focal-redux"
},
"license": "MIT",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"lint": "tslint -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
"build": "tsc && rollup -c && rimraf compiled",
"start": "tsc-watch --onSuccess \"rollup -c\"",
"test": "jest",
"test:watch": "jest --watch",
"precommit": "lint-staged"
},
"lint-staged": {
"{src,test}/**/*.ts": [
"prettier --no-semi --single-quote --print-width 120 --write './lib/**/*.ts?(x)'",
"git add"
]
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 95,
"lines": 95,
"statements": 95
}
}
},
"devDependencies": {
"@types/jest": "20.0.0",
"@types/node": "8.0.0",
"jest": "20.0.4",
"lint-staged": "4.0.0",
"lodash.camelcase": "4.3.0",
"prettier": "1.4.4",
"rimraf": "^2.6.1",
"rollup": "0.42.0",
"rollup-plugin-commonjs": "8.0.2",
"rollup-plugin-node-resolve": "3.0.0",
"rollup-plugin-sourcemaps": "0.4.2",
"ts-jest": "20.0.6",
"ts-node": "3.0.6",
"tsc-watch": "1.0.5",
"tslint": "5.4.3",
"tslint-config-prettier": "1.1.0",
"tslint-config-standard": "6.0.0",
"typescript": "2.3.4"
},
"dependencies": {
"@grammarly/focal": "^0.4.400",
"redux": "^3.7.0"
},
"peerDependencies": {
"@grammarly/focal": "^0.4.400",
"redux": "^3.7.0"
}
}