-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.57 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.57 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
65
66
67
68
69
{
"name": "@typeup/cli",
"version": "0.2.26",
"description": "Command line interface for TypeUp.",
"repository": {
"type": "git",
"url": "git+https://github.com/typeup/cli"
},
"author": "Simon Mika <simon@mika.se>",
"license": "MIT",
"bugs": {
"url": "https://github.com/typeup/cli/issues"
},
"homepage": "https://github.com/typeup/cli#readme",
"bin": {
"typeup": "dist/index.js"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"jest": {
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.test.json"
}
},
"testEnvironment": "node",
"testRegex": "((\\.|/)(test|spec))(\\.|\\/.+)(jsx?|tsx?)$",
"testPathIgnorePatterns": [
"node_modules/",
"dist/"
],
"collectCoverageFrom": [
"**/*.{ts,tsx,js,jsx}",
"!**/node_modules/**",
"!**/dist/**"
],
"preset": "ts-jest",
"testMatch": null
},
"scripts": {
"dev": "watch 'npm run build' .",
"lint": "tslint --config tslint.json --project .",
"build": "tsc -p .",
"pretest": "npm run build",
"test": "jest",
"test:watch": "watch jest",
"preversion": "npm run test",
"version": "npm run build",
"postversion": "git push && git push --tags",
"clean": "rm -rf dist node_modules coverage"
},
"dependencies": {
"@cogneco/mend": "^1.7.15",
"@typeup/dom": "^0.2.12",
"@typeup/parser": "^0.2.16",
"@typeup/renderer": "^0.2.32"
},
"devDependencies": {
"@types/jest": "^26.0.14",
"@types/node": "^14.11.2",
"babel-core": "^6.26.3",
"babel-jest": "^26.5.0",
"jest": "^26",
"ts-jest": "^26.4.1",
"tslint": "^6.1.3",
"typescript": "^4.0.3",
"watch": "^1.0.2"
}
}