-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.67 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.67 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "cruiser",
"version": "1.0.0",
"description": "A type-safe state management solution with atomic mutation support.",
"main": "dist/index.js",
"jsnext:main": "dist/index.es.js",
"types": "dist/index.d.ts",
"scripts": {
"preversion": "npm test",
"version": "npm run build",
"postversion": "git push origin master && git push origin master --tags",
"prepublish": "npm run clean && npm run build && npm run test",
"clean": "rm -rf dist/",
"build": "rollup -c",
"watch": "npm run build -- --watch",
"test": "jest --max-workers=1 --bail --no-cache",
"tdd": "npm test -- --watch",
"lint": "tslint -p ."
},
"jest": {
"testEnvironment": "node",
"notify": false,
"silent": true,
"roots": [
"<rootDir>/src"
],
"testRegex": ".test\\.tsx?$",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"repository": {
"type": "git",
"url": "https://github.com/HelpfulHuman/Cruiser.git"
},
"author": "Nick Glenn <nick@helpfulhuman.com> (https://nick-glenn.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/HelpfulHuman/Cruiser/issues"
},
"homepage": "https://github.com/HelpfulHuman/Cruiser",
"dependencies": {},
"devDependencies": {
"@helpfulhuman/tslint-rules": "^1.0.0",
"@types/jest": "^24.0.18",
"@types/node": "^12.7.2",
"jest": "^24.9.0",
"rollup": "^0.50.1",
"rollup-plugin-typescript": "^1.0.1",
"rollup-watch": "^4.3.1",
"ts-jest": "^24.0.2",
"tslib": "^1.10.0",
"tslint": "^5.19.0",
"typescript": "^3.6.2"
}
}