-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathpackage.json
55 lines (55 loc) · 1.44 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": "rudyjs",
"version": "1.0.2",
"description": "R-U-DEAD-YET ?",
"preferGlobal": true,
"main": "dist/main.js",
"scripts": {
"start": "node dist/cli.js",
"startTs": "node_modules/.bin/ts-node --project ./tsconfig.json src/cli.ts",
"build": "npm run clean && node_modules/.bin/tsc -p . && node_modules/.bin/gulp deploy",
"clean": "node_modules/.bin/gulp clean",
"lint": "node_modules/.bin/tslint --project .",
"test": "node_modules/.bin/mocha --recursive src/test --timeout 10000 --exit",
"deploy": "npm run lint && npm test && npm run build"
},
"bin": {
"rudy": "./dist/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sahilchaddha/rudyjs.git"
},
"keywords": [
"rudy",
"rudyjs",
"js",
"typescript",
"node"
],
"author": "Sahil Chaddha",
"license": "ISC",
"bugs": {
"url": "https://github.com/sahilchaddha/rudyjs/issues"
},
"homepage": "https://github.com/sahilchaddha/rudyjs#readme",
"dependencies": {
"chalk": "^2.4.1",
"commander": "^2.15.1",
"figlet": "^1.2.0",
"random-useragent": "^0.3.1",
"request": "^2.85.0",
"stream-buffers": "^3.0.1",
"tor-request": "^2.1.2"
},
"devDependencies": {
"@types/node": "^10.0.4",
"@types/request": "^2.47.0",
"gulp": "^3.9.1",
"gulp-clean": "^0.4.0",
"mocha": "^5.1.1",
"ts-node": "^6.0.3",
"tslint": "^5.10.0",
"typescript": "^2.8.3"
}
}