-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.62 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
{
"name": "proj-maker",
"version": "0.0.1",
"keywords": [],
"description": "a utility for experimenting with the use of `git` in conjuction with `hygen` to `reapply` a new version of a generator to generated code which was modified",
"main": "dist/proj-maker.js",
"author": "Ron Perry",
"files": [
"bin/*",
"dist/*"
],
"license": "MIT",
"bin": {
"proj-maker": "./bin/proj-maker"
},
"bugs": "https://github.com/ronp001/proj-maker/issues",
"repository": {
"type": "git",
"url": "https://github.com/ronp001/proj-maker"
},
"scripts": {
"clean": "rm -rf dist/",
"relink": "yarn unlink && yarn link",
"build": "tsc",
"build:production": "yarn clean && tsc -p tsconfig-prod.json && yarn pack",
"test:integration": "jest --testRegex 'src(/__(integration_)?tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$' 'src/__integration_tests__/integration.test.ts'",
"test": "jest",
"test:watch": "jest --watch",
"doc": "typedoc --out ./doc ./src"
},
"dependencies": {
"chalk": "^2.3.1",
"commander": "^2.14.1",
"hygen": "^1.4.28",
"isbinaryfile": "^3.0.2",
"lodash": "^4.17.5"
},
"devDependencies": {
"@types/jest": "^22.1.2",
"@types/lodash": "^4.14.104",
"@types/mock-fs": "^3.6.30",
"jest": "^22.3.0",
"mock-fs": "^4.4.2",
"ts-jest": "^22.0.4",
"typescript": "^2.7.2"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "src(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}