-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.45 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
{
"name": "@jerryscript/debugger",
"version": "0.0.1",
"description": "JerryScript Debugger & Chrome DevTools Proxy",
"bin": {
"jerry-debugger": "dist/cli/index.js"
},
"scripts": {
"prepare": "tsc",
"build": "tsc",
"build:watch": "tsc --watch",
"lint": "tslint -p .",
"test": "jest",
"test:watch": "jest --watch"
},
"repository": "https://github.com/jerryscript-project/jerryscript-debugger-ts/",
"author": "JS Foundation and other contributors",
"license": "Apache-2.0",
"private": false,
"dependencies": {
"chrome-remote-debug-protocol": "^1.2.20170721",
"commander": "^2.15.0",
"noice-json-rpc": "^1.1.1",
"uuid": "^3.2.1",
"ws": "^3.3.2"
},
"devDependencies": {
"@types/commander": "^2.12.2",
"@types/jest": "^22.1.2",
"@types/minimist": "^1.2.0",
"@types/node": "^9.4.6",
"@types/uuid": "^3.4.3",
"@types/ws": "^4.0.1",
"jest": "^22.3.0",
"ts-jest": "^22.0.4",
"tslint": "^5.9.1",
"tslint-config-standard": "^7.0.0",
"typescript": "^2.7.1"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"globals": {
"ts-jest": {
"enableTsDiagnostics": true
}
},
"rootDir": "src",
"resetMocks": true,
"resetModules": true
}
}