-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.27 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": "devfor",
"description": "Spin up a Mac development machine quickly!",
"version": "0.0.0",
"author": "Nam Pham <[email protected]>",
"bin": {
"devfor": "./bin/run",
"devfor-mac": "./scripts/install-mac.sh"
},
"bugs": "https://github.com/nampdn/devfor/issues",
"dependencies": {
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/plugin-help": "^2",
"tslib": "^1"
},
"devDependencies": {
"@oclif/test": "^1",
"@oclif/tslint": "^1",
"@types/chai": "^4",
"@types/mocha": "^5",
"@types/node": "^10",
"chai": "^4",
"mocha": "^5",
"nyc": "^12",
"ts-node": "^7",
"tslint": "^5",
"typescript": "^3.0"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib"
],
"homepage": "https://github.com/nampdn/devfor",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"bin": "devfor"
},
"repository": "nampdn/devfor",
"scripts": {
"posttest": "tsc -p test --noEmit && tslint -p test -t stylish",
"prepack": "rm -rf lib && tsc",
"prepare": "rm -rf lib && tsc",
"test": "nyc mocha --forbid-only \"test/**/*.test.ts\"",
"dev:scripts": "/usr/bin/env bash ./scripts/install-mac.sh"
},
"types": "lib/index.d.ts"
}