forked from runem/web-component-analyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 2.56 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "web-component-analyzer",
"version": "1.0.3",
"description": "CLI that analyzes web components",
"main": "lib/cjs/api.js",
"module": "lib/esm/api.js",
"typings": "lib/cjs/api.d.ts",
"files": [
"/lib/",
"cli.js"
],
"scripts": {
"clean": "rimraf lib",
"prepare": "npm run build",
"build": "npm run clean & rollup -c",
"watch": "rollup -c --watch",
"pretest": "npm install --cwd './dev' --prefix './dev'",
"test": "cross-env TS_MODULE=current ava",
"test:all": "ava",
"lint": "eslint . --ext ts --ext js",
"test:update": "ava --update-snapshots",
"test:watch": "ava --watch",
"prettier:check": "prettier --list-different \"src/**/*.{ts,tsx}\"",
"prettier:write": "prettier --write \"src/**/*.{ts,tsx}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/runem/web-component-analyzer.git"
},
"keywords": [
"web components",
"web",
"components"
],
"contributors": [
{
"name": "Rune Mehlsen",
"url": "https://github.com/runem",
"img": "https://avatars0.githubusercontent.com/u/5372940?s=400&u=43d97899257af3c47715679512919eadb07eab26&v=4"
}
],
"author": "Rune Mehlsen",
"license": "MIT",
"bugs": {
"url": "https://github.com/runem/web-component-analyzer/issues"
},
"homepage": "https://github.com/runem/web-component-analyzer#readme",
"dependencies": {
"fast-glob": "^3.1.0",
"ts-simple-type": "~0.3.6",
"typescript": "^3.5.3",
"yargs": "^15.0.2"
},
"devDependencies": {
"@types/node": "^12.12.14",
"@types/yargs": "^13.0.3",
"@typescript-eslint/eslint-plugin": "^2.10.0",
"@typescript-eslint/parser": "^2.10.0",
"@wessberg/rollup-plugin-ts": "^1.2.16",
"ava": "^2.4.0",
"cross-env": "^6.0.3",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
"husky": "^3.1.0",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"rimraf": "^3.0.0",
"rollup": "^1.27.5",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"ts-node": "^8.5.3",
"tslib": "^1.10.0",
"typescript-3.5": "npm:typescript@~3.5.3",
"typescript-3.6": "npm:typescript@~3.6.4",
"typescript-3.7": "npm:typescript@~3.7.4",
"typescript-3.8": "npm:typescript@~3.8.0-beta"
},
"ava": {
"compileEnhancements": false,
"extensions": [
"ts"
],
"require": [
"ts-node/register/transpile-only"
],
"snapshotDir": "test/snapshots/results",
"helpers": [
"test/helpers/**/*"
],
"sources": [
"src/**/*"
]
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && npm run lint"
}
},
"bin": {
"wca": "cli.js",
"web-component-analyzer": "cli.js"
}
}