-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 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
{
"name": "imdb-dataset-parser",
"version": "1.0.0",
"description": "Parse data coming from https://www.imdb.com/interfaces/ with node-gpy and C++",
"gypfile": true,
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"./dist/columns.d.ts",
"./dist/columns.js",
"./dist/index.d.ts",
"./dist/index.js",
"./dist/NativeParser.d.ts",
"./dist/NativeParser.js",
"./dist/TSVParser.d.ts",
"./dist/TSVParser.js",
"./dist/types.d.ts",
"./dist/types.js"
],
"install": "node-gyp configure build",
"scripts": {
"install": "npm run build",
"configure": "node-gyp clean && node-gyp configure",
"build": "npm run build:gyp",
"build:gyp": "npm run configure && node-gyp build",
"build:debug": "npm run configure && node-gyp build --debug",
"compile": "npm run build:tsc",
"build:tsc": "tsc",
"test": "npx jest",
"build:test": "npm run build && npm run test"
},
"keywords": [
"imdb",
"tsv",
"parser",
"movie",
"cpp",
"noe-gyp"
],
"author": {
"name": "Totto16",
"url": "https://github.com/Totto16"
},
"license": "MIT",
"engines": {
"node": "^19.7.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Totto16/imdb-dataset-parser.git"
},
"dependencies": {
"bindings": "^1.5.0"
},
"devDependencies": {
"@token-cjg/leakage": "^0.6.0",
"@types/jest": "^29.4.0",
"jest": "^29.5.0",
"nan": "^2.17.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}