-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.73 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
{
"name": "minigram-reflect",
"description": "A reflection library for classes, methods and arguments.",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"directories": {
"test": "tests"
},
"scripts": {
"test": "jest",
"lint": "tslint -c tslint.json src/**/*.ts",
"build": "tsc",
"release:pre": "npm run lint && npm run test && npm run build",
"release": "npm run release:pre && release-it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/minigram/reflect.git"
},
"keywords": [
"reflection",
"javascript",
"classes",
"typescript",
"metadata"
],
"author": "Rafael Ferrari <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/minigram/reflect/issues"
},
"homepage": "https://github.com/minigram/reflect#readme",
"jest": {
"transform": {
".(ts)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"js"
],
"collectCoverageFrom": [
"**/*.{ts,js}",
"!**/node_modules/**",
"!**/tests/**",
"!**/coverage/**",
"!**/lib/**"
]
},
"devDependencies": {
"@types/chance": "^0.7.33",
"@types/jest": "^19.2.3",
"@types/node": "^7.0.22",
"@types/reflect-metadata": "0.0.5",
"core-js": "^2.4.1",
"jest": "^20.0.4",
"reflect-metadata": "^0.1.10",
"release-it": "^2.7.3",
"ts-jest": "^20.0.4",
"tslint": "^5.3.2",
"tslint-eslint-rules": "^4.1.1",
"tsutils": "^1.6.0",
"typescript": "^2.3.3",
"vrsource-tslint-rules": "^5.1.0"
},
"version": "1.0.2",
"dependencies": {
"extendable-error": "^0.1.5"
}
}