This repository has been archived by the owner on Apr 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
52 lines (52 loc) · 1.48 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
{
"name": "netclix",
"version": "0.2.7",
"description": "A simple cli tool to get movie streaming link",
"homepage": "https://github.com/johackim/netclix",
"author": "johackim",
"license": "GPL-3.0",
"engines": {
"node": "~6.11",
"npm": "~3.10"
},
"repository": {
"type": "git",
"url": "https://github.com/johackim/netclix.git"
},
"bugs": {
"url": "https://github.com/johackim/netclix/issues"
},
"preferGlobal": true,
"scripts": {
"prepublish": "mkdir -p build && ./node_modules/.bin/babel src/ --out-dir build/ --compact true && chmod +x build/netclix.js",
"build": "mkdir -p build && ./node_modules/.bin/babel src/ --out-dir build/ --compact true && chmod +x build/netclix.js",
"start": "./node_modules/.bin/babel-node src/netclix.js"
},
"bin": {
"netclix": "build/netclix.js"
},
"dependencies": {
"babel-polyfill": "^6.23.0",
"debug": "^2.6.8",
"inquirer": "^3.1.1",
"node-horseman": "^3.3.0",
"ora": "^1.3.0",
"phantomjs-prebuilt": "^2.1.14",
"sleep-promise": "^2.0.0",
"system": "^1.3.0",
"webpage": "^0.3.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"chai": "^4.0.2",
"eslint": "^3.18.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.1.0",
"mocha": "^3.4.2"
}
}