-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
44 lines (44 loc) · 1.14 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
{
"name": "popcorn-api",
"version": "1.1.1",
"description": "A library to access the PopcornTime API",
"main": "dist/PopCorn",
"types": "./typings/index.d.ts",
"scripts": {
"build": "rm -rf ./dist && babel src --out-dir dist --copy-files",
"watch": "npm run build -- --watch",
"test": "node ./examples/example.js",
"docs": "node docs.js",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nirewen/popcorn-api.git",
"homepage": "https://github.com/nirewen/popcorn-api"
},
"keywords": [
"popcorn",
"time",
"api",
"nodejs"
],
"author": "nirewen",
"license": "MIT",
"bugs": {
"url": "https://github.com/nirewen/popcorn-api/issues"
},
"homepage": "https://github.com/nirewen/popcorn-api#readme",
"dependencies": {
"node-fetch": "^2.2.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-plugin-add-module-exports": "^1.0.0",
"babel-plugin-module-resolver": "^3.1.1",
"babel-preset-env": "^1.7.0",
"docma": "^2.1.0",
"jsdoc": "^3.5.5",
"typescript": "^3.1.3"
}
}