-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.46 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
{
"name": "@repometric/linterhub-js",
"version": "1.0.0-alpha.1",
"description": "Small package with shared classes for all linterhub extensions",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"directories": {
"lib": "dist"
},
"files": [
"dist"
],
"scripts": {
"init": "npm install",
"build": "tsc -p .",
"test": "npm run build && mocha dist/test.js -R spec -C --timeout 60000",
"lint": "tslint -c tslint.json --type-check --project tsconfig.json --exclude **/typings/**/*.ts --exclude **/node_modules/**/*.ts src/**/*.ts",
"check": "npm run init && npm run build && npm run test && npm run lint",
"pub": "npm publish --access public"
},
"author": "Oleg Safonov <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/repometric/linterhub-js"
},
"dependencies": {
"child_process": "^1.0.2",
"fs": "0.0.2",
"http-proxy-agent": "^2.0.0",
"https": "^1.0.0",
"https-proxy-agent": "^2.0.0",
"mkdirp": "^0.5.1",
"path": "^0.12.7",
"process": "^0.11.10",
"request": "^2.81.0",
"request-progress": "^3.0.0",
"systeminformation": "^3.26.1",
"unzip": "^0.1.11",
"url": "^0.11.0",
"yauzl": "^2.8.0"
},
"devDependencies": {
"@types/node": "^8.0.17",
"assert": "^1.4.1",
"mocha": "^3.4.2",
"sinon": "^2.4.1",
"tslint": "^5.5.0",
"tslint-eslint-rules": "^4.1.1",
"typescript": "^2.4.2"
}
}