forked from andreivinaga/imdb-dataset
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.1 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.1 KB
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": "imdb-dataset",
"version": "1.0.0",
"description": "Parse data coming from https://www.imdb.com/interfaces/",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "./node_modules/.bin/mocha -r ./node_modules/ts-node/register ./test/test.spec.ts",
"build": "./node_modules/.bin/tsc",
"lint": "./node_modules/.bin/tslint -c tslint.json 'src/**/*.ts'",
"testRun": "npm run build && node dist/src/testRun.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andreivinaga/imdb-dataset.git"
},
"keywords": [
"imdb",
"tsv",
"parser",
"movie"
],
"author": "andreivinaga",
"license": "MIT",
"bugs": {
"url": "https://github.com/andreivinaga/imdb-dataset/issues"
},
"homepage": "https://github.com/andreivinaga/imdb-dataset#readme",
"dependencies": {
"enum-values": "1.2.1",
"typescript": "3.8.3"
},
"devDependencies": {
"@types/mocha": "7.0.2",
"@types/node": "12.12.30",
"assert": "2.0.0",
"mocha": "7.1.1",
"ts-node": "8.7.0"
},
"engines": {
"node": ">=18.0.0"
}
}