-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
76 lines (76 loc) · 2.2 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
{
"name": "ts-reflection",
"version": "0.2.0",
"description": "Type reflection utilities for TypeScript.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build:source": "tsc",
"build": "yarn build:source && yarn copy:meta && yarn lint:build",
"clean": "rm -rf dist && rm -rf sandbox && rm -rf test/node_modules/ts-reflection && rm -rf examples/node_modules/ts-reflection",
"copy:meta": "./scripts/copy-metadata.sh",
"lint:source": "eslint . --fix --ext .ts,.tsx",
"lint:build": "eslint ./dist --fix --ext .js,.ts",
"test:examples": "cd examples && yarn --check-files && yarn build && yarn start",
"test:unit": "jest",
"test:version": "./scripts/test.sh",
"test:versions": "./scripts/test-all-versions.sh",
"test": "yarn test:unit && yarn test:versions && yarn test:examples"
},
"repository": {
"type": "git",
"url": "git+https://github.com/janjakubnanista/ts-reflection.git"
},
"keywords": [
"TypeScript",
"type properties",
"type keys",
"enum values",
"enum keys"
],
"author": "Jan Jakub Nanista <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/janjakubnanista/ts-reflection/issues"
},
"homepage": "https://github.com/janjakubnanista/ts-reflection#readme",
"devDependencies": {
"@types/jest": "^26.0.0",
"@types/node": "^14.0.13",
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-sort-imports-es6-autofix": "^0.5.0",
"fast-check": "^1.25.1",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.2.10",
"prettier": "^2.0.5",
"ts-jest": "^26.1.1",
"tslib": "^2.0.0",
"ttypescript": "^1.5.10",
"typescript": "^3.9.5"
},
"peerDependencies": {
"typescript": "^3.2.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"jest": {
"preset": "ts-jest",
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.spec.ts"
]
},
"lint-staged": {
"*.{js,ts}(x)?": [
"eslint --fix"
]
}
}