forked from coder/nbin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.17 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
{
"name": "@coder/nbin",
"version": "1.2.2",
"description": "Fast and robust node.js binary compiler.",
"main": "out/api.js",
"scripts": {
"prepare": "./scripts/webpack_build.sh",
"test": "node node_modules/.bin/jest"
},
"typings": "typings/nbin.d.ts",
"author": "Coder",
"license": "MIT",
"devDependencies": {
"@types/fs-extra": "^5.0.5",
"@types/glob": "^7.1.1",
"@types/jest": "^24.0.11",
"@types/node": "^11.11.4",
"@types/node-fetch": "^2.1.7",
"@types/webpack": "^4.4.26",
"happypack": "^5.0.1",
"jest": "^24.5.0",
"node-loader": "^0.6.0",
"node-pty": "^0.8.1",
"string-replace-loader": "^2.1.1",
"ts-jest": "^24.0.0",
"ts-loader": "^5.3.3",
"typescript": "^3.3.4000",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.3",
"webpack-dev-server": "^3.2.1"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testPathIgnorePatterns": [
"/node_modules/",
"<rootDir>/node/test"
],
"testRegex": "src/.*\\.test\\.tsx?"
},
"dependencies": {
"@coder/logger": "^1.1.8",
"fs-extra": "^7.0.1",
"glob": "^7.1.3",
"node-fetch": "^2.3.0",
"ora": "^3.2.0"
}
}