-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 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
{
"name": "vue-type-audit",
"version": "0.2.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": "andoshin11 <[email protected]>",
"license": "MIT",
"bin": {
"type-audit": "./bin/audit.js"
},
"keywords": [
"vue",
"typescript",
"typecheck"
],
"repository": {
"type": "git",
"url": "git+https://github.com/andoshin11/vue-type-audit.git"
},
"bugs": {
"url": "https://github.com/andoshin11/vue-type-audit/issues"
},
"homepage": "https://github.com/andoshin11/vue-type-audit#readme",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test:unit": "jest",
"test:e2e": "jest --config=jest.config.e2e.js",
"prepare": "npm run build"
},
"devDependencies": {
"@types/commander": "^2.12.2",
"@types/glob": "^7.1.3",
"@types/jest": "^25.2.1",
"@types/node": "^13.11.0",
"@types/prettier": "^2.0.0",
"glob": "^7.1.6",
"jest": "^25.2.7",
"ts-jest": "^25.3.1",
"typescript": "4.1.2"
},
"dependencies": {
"@vue/compiler-core": "^3.0.4",
"@vue/compiler-dom": "^3.0.4",
"@vue/compiler-sfc": "^3.0.4",
"acorn": "^6.4.1",
"chalk": "^4.1.0",
"commander": "^5.0.0",
"kind-of": "^6.0.3",
"lodash": "^4.17.19",
"prettier": "^2.0.4",
"source-map": "^0.6.1",
"vue": "^3.0.4"
}
}