This repository has been archived by the owner on Jan 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
71 lines (71 loc) · 1.74 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
{
"name": "@theia/plugin-packager",
"version": "0.0.1",
"description": "Package theia plugins",
"author": "Florent Benoit",
"license": "EPL-2.0",
"bin": {
"theia-plugin": "./dist/index.js"
},
"dependencies": {
"archiver": "2.1.1",
"chalk": "2.4.1",
"fs-extra": "7.0.0",
"glob-promise": "3.4.0",
"micromatch": "3.1.10",
"read-pkg": "4.0.1",
"yargs": "12.0.1"
},
"devDependencies": {
"@types/archiver": "2.1.1",
"@types/fs-extra": "5.0.5",
"@types/jest": "22.2.3",
"@types/micromatch": "3.1.0",
"@types/node": "9.6.5",
"@types/read-pkg": "3.0.0",
"@types/tmp": "0.0.33",
"@types/yargs": "11.0.0",
"jest": "22.4.3",
"rimraf": "2.6.2",
"tmp": "0.0.33",
"ts-jest": "22.4.3",
"tslint": "5.9.1",
"typescript": "2.9.2",
"typescript-formatter": "7.2.2",
"unzipper": "0.8.13"
},
"files": [
"dist",
"src"
],
"scripts": {
"prepare": "yarn run clean && yarn run build",
"clean": "rimraf dist",
"build": "yarn run compile && yarn run format-code && yarn run tslint-fix && yarn run test",
"compile": "tsc && chmod +x dist/index.js",
"watch": "tsc -w",
"test": "jest",
"test-watch": "jest --watchAll",
"format-code": "tsfmt -r",
"tslint-fix": "tslint --fix --project .",
"tslint": "tslint --project ."
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "./coverage",
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"modulePathIgnorePatterns": [
"<rootDir>/dist"
],
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
}
}