-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
85 lines (85 loc) · 2.15 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
77
78
79
80
81
82
83
84
85
{
"name": "vue-classify",
"version": "0.2.4",
"description": "Convert option-object style vue component to typescript class component",
"license": "MIT",
"repository": "https://github.com/hikerpig/vue-classify",
"author": {
"name": "hikerpig",
"email": "[email protected]",
"url": "https://github.com/hikerpig"
},
"keywords": [
"vue",
"typescript",
"ast",
"transformation"
],
"files": [
"bin",
"lib"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"bin": {
"vue-classify": "bin/vue-classify"
},
"scripts": {
"clean": "rimraf lib && rimraf coverage",
"format": "prettier --write \"{src,__tests__}/**/*.ts\" --single-quote --trailing-comma es5",
"lint": "tslint --force --format verbose \"src/**/*.ts\"",
"prepublishOnly": "npm run build",
"prebuild": "npm run clean && npm run format && npm run lint && echo Using TypeScript && tsc --version",
"build": "tsc --pretty",
"test": "jest",
"coverage": "jest --coverage",
"dev": "npm run build -- --watch --sourcemap",
"watch:test": "jest --watch",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"dependencies": {
"@babel/generator": "^7.5.0",
"@babel/parser": "^7.5.0",
"@babel/traverse": "^7.5.0",
"@babel/types": "^7.5.0",
"chalk": "^2.4.2",
"commander": "^3.0.2",
"prettier": "^1.16.1",
"snyk": "^1.298.1",
"vue-template-compiler": "^2.5.21"
},
"devDependencies": {
"@types/jest": "24.0.14",
"@types/node": "12.0.3",
"coveralls": "3.0.3",
"jest": "24.8.0",
"rimraf": "2.6.3",
"ts-jest": "24.0.2",
"ts-node": "8.1.1",
"tslint": "5.12.0",
"tslint-config-prettier": "1.17.0",
"typescript": "3.2.2"
},
"engines": {
"node": ">=6.0.0"
},
"jest": {
"globals": {
"ts-jest": {
"diagnostics": false
}
},
"transform": {
".(ts)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|js)$",
"moduleFileExtensions": [
"ts",
"json",
"js"
],
"testEnvironment": "node"
},
"snyk": true
}