-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
57 lines (57 loc) · 1.37 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
56
57
{
"name": "create-stickyboard-app",
"description": "Create StickyBoard app",
"version": "0.1.14",
"author": "Soaple",
"bin": {
"create-stickyboard-app": "./bin/run"
},
"bugs": "https://github.com/soaple/create-stickyboard-app/issues",
"dependencies": {
"@oclif/command": "^1.7.0",
"@oclif/config": "^1.16.0",
"@oclif/plugin-help": "^3.1.0",
"chalk": "^4.1.0",
"cli-ux": "^5.4.9",
"fs-extra": "^9.0.1"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.0",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/preset-env": "^7.11.0",
"@oclif/dev-cli": "^1.22.2",
"eslint": "^5.16.0",
"eslint-config-oclif": "^3.1.0",
"husky": "^4.2.5"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/src"
],
"homepage": "https://github.com/soaple/create-stickyboard-app",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "src/app.js",
"oclif": {
"bin": "create-stickyboard-app"
},
"repository": "soaple/create-stickyboard-app",
"scripts": {
"posttest": "eslint .",
"prepublish": "oclif-dev readme",
"test": "echo NO TESTS",
"version": "oclif-dev readme && git add README.md",
"transpile": "babel src/index.js --out-file src/app.js"
},
"husky": {
"hooks": {
"pre-commit": "npm run transpile && git add ."
}
}
}