-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 922 Bytes
/
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
{
"name": "nodejscompilermediator",
"version": "1.0.0",
"description": "A NodeJS mediator for compile and execute code from other languages ",
"main": "index.js",
"scripts": {
"test": "jest",
"lint": "tslint -c tslint.json 'src/**/*.ts'"
},
"keywords": [
"compiler",
"mediator"
],
"author": "Joao Gabriel Gouveia",
"license": "MIT",
"jest": {
"testEnvironment": "node",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"devDependencies": {
"@types/jest": "^23.1.6",
"@types/node": "^10.5.2",
"jest": "^23.4.1",
"jest-cli": "^23.4.1",
"ts-jest": "^23.0.0",
"typescript": "^2.9.2"
},
"dependencies": {
"rxjs": "^6.2.2",
"tree-kill": "^1.2.0"
}
}