-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.31 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
{
"name": "ts-plugin-mmlpx",
"version": "0.0.3",
"description": "ts plugin for mmlpx",
"scripts": {
"test": "jest",
"test-cover": "jest --coverage",
"build": "tsc",
"lint": "tslint 'src/**/*.ts' && npm run test-cover",
"codecov": "codecov",
"prepush": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mmlpxjs/ts-plugin-mmlpx.git"
},
"keywords": [
"mmlpx",
"typescript",
"plugin"
],
"author": "Kuitos",
"license": "MIT",
"bugs": {
"url": "https://github.com/mmlpxjs/ts-plugin-mmlpx/issues"
},
"homepage": "https://github.com/mmlpxjs/ts-plugin-mmlpx#readme",
"dependencies": {
"tslib": "^1.9.0"
},
"devDependencies": {
"@types/jest": "^23.1.1",
"@types/node": "^10.3.4",
"codecov": "^3.0.2",
"husky": "^0.14.3",
"jest": "^23.1.0",
"tiny-glob": "^0.2.1",
"ts-jest": "^22.4.6",
"tslint": "^5.10.0",
"tslint-eslint-rules": "^5.3.1",
"typescript": "^2.9.2"
},
"jest": {
"moduleFileExtensions": [
"js",
"ts"
],
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.spec.ts"
],
"transform": {
"^.+\\.ts$": "<rootDir>/node_modules/ts-jest"
},
"coveragePathIgnorePatterns": [
"/node_modules/",
"/__tests__/",
"/dist/"
]
}
}