-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.17 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.17 KB
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
{
"name": "redux-cornell",
"version": "2.0.0",
"description": "Write less, do more with Redux",
"main": "./dist/index.js",
"author": "Eyal Eizenberg",
"license": "MIT",
"homepage": "https://github.com/wix/redux-cornell",
"repository": {
"type": "git",
"url": "git+https://github.com/wix/redux-cornell.git"
},
"scripts": {
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"build": "tsc",
"lint": "tslint -c tslint.json 'src/**/*.{ts,tsx}'",
"pretest": "npm run lint",
"test": "jest",
"test:dev": "jest --watch",
"test-build": "npm run test && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"files": [
"dist"
],
"devDependencies": {
"@types/jest": "^22.0.1",
"coveralls": "^3.0.0",
"jest-cli": "^22.1.2",
"ts-jest": "^22.0.1",
"tslint": "^5.9.1",
"typescript": "^2.6.2"
},
"jest": {
"collectCoverage": true,
"testURL": "http://localhost/",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "/__tests__/.*\\.(ts|tsx|js)$"
}
}