forked from wessberg/CodeAnalyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 3.06 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
{
"name": "@wessberg/codeanalyzer",
"version": "1.0.123",
"description": "A service that can analyze your code in great detail ahead of time.",
"scripts": {
"changelog:generate": "conventional-changelog --outfile CHANGELOG.md --release-count 0",
"readme:badges": "node node_modules/@wessberg/ts-config/readme/badge/helper/add-badges.js",
"readme:refresh": "npm run changelog:generate && npm run readme:badges",
"commit:readme": "npm run readme:refresh && git commit -am \"Bumped version\" --no-verify || true",
"clean:dist": "rm -r -f dist",
"clean:compiled": "rm -r -f compiled",
"clean": "npm run clean:dist && npm run clean:compiled",
"tsc:dist:umd": "tsc --module umd --outDir dist/umd -p tsconfig.dist.json",
"tsc:dist:es2015": "tsc --module es2015 --outDir dist/es2015 -p tsconfig.dist.json",
"rollup": "rollup -c rollup.config.js",
"rollup:test": "rollup -c rollup.test.config.js",
"prebuild": "npm run clean",
"build": "npm run rollup",
"build:prod": "NODE_ENV=production npm run rollup",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"validate": "npm run tslint && npm run test",
"pretest": "npm run clean:compiled && npm run rollup:test",
"test": "NODE_ENV=TEST ava --fail-fast",
"posttest": "npm run clean:compiled",
"prepublishOnly": "npm run validate && npm run build:prod",
"precommit": "npm run tslint && exit 0",
"prepush": "npm run validate && exit 0",
"publish:major": "npm version major && npm run commit:readme && git push && npm publish",
"publish:minor": "npm version minor && npm run commit:readme && git push && npm publish",
"publish:patch": "npm version patch && npm run commit:readme && git push && npm publish"
},
"keywords": [
"ast",
"analyzer",
"resolve",
"metadata",
"language service",
"typescript",
"code quality"
],
"devDependencies": {
"@wessberg/rollup-plugin-di": "^1.0.72",
"@wessberg/ts-config": "^0.0.25",
"@wessberg/environment": "^1.0.1",
"ava": "^0.25.0",
"conventional-changelog-cli": "^1.3.8",
"husky": "latest",
"tslint": "^5.9.1",
"rollup": "^0.55.3",
"rollup-plugin-typescript2": "^0.11.0"
},
"dependencies": {
"@types/node": "^9.4.0",
"@wessberg/di": "^1.0.26",
"@wessberg/fileloader": "^1.1.6",
"@wessberg/moduleutil": "0.0.21",
"@wessberg/pathutil": "0.0.8",
"@wessberg/stringutil": "^1.0.14",
"@wessberg/typescript-ast-util": "0.0.44",
"@wessberg/typescript-language-service": "0.0.35",
"@wessberg/typescript-package-reassembler": "0.0.7",
"tslib": "^1.9.0",
"typescript": "^2.7.1"
},
"main": "./dist/umd/index.js",
"module": "./dist/es2015/index.js",
"browser": "./dist/es2015/index.js",
"types": "./dist/es2015/index.d.ts",
"typings": "./dist/es2015/index.d.ts",
"es2015": "./dist/es2015/index.js",
"repository": {
"type": "git",
"url": "https://github.com/wessberg/CodeAnalyzer.git"
},
"bugs": {
"url": "https://github.com/wessberg/CodeAnalyzer/issues"
},
"author": {
"name": "Frederik Wessberg",
"email": "[email protected]",
"url": "https://github.com/wessberg"
},
"engines": {
"node": ">=7.4.0"
},
"license": "MIT"
}