This repository was archived by the owner on Sep 13, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.28 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.28 KB
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
{
"name": "create-abell-app",
"version": "0.0.14",
"description": "Boilerplate for abell app. npx create-abell-app my-blog",
"main": "bin/create-abell-app.js",
"bin": {
"create-abell-app": "bin/create-abell-app.js"
},
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha --recursive \"./tests/*.spec.js\" --timeout 300000",
"eslint": "eslint .",
"prettier": "prettier --write \"**/*.js\"",
"prepublishOnly": "npm run eslint && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/abelljs/create-abell-app.git"
},
"keywords": [
"abell"
],
"author": "saurabhdaware",
"license": "MIT",
"bugs": {
"url": "https://github.com/abelljs/create-abell-app/issues"
},
"homepage": "https://github.com/abelljs/create-abell-app#readme",
"dependencies": {
"commander": "^6.0.0",
"prompts": "^2.3.2"
},
"devDependencies": {
"abell": "^0.9.0",
"chai": "^4.2.0",
"eslint": "^7.0.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.5",
"mocha": "^8.1.3",
"prettier": "^2.0.5"
},
"husky": {
"hooks": {
"pre-commit": "npm run prettier && eslint . --fix && npm run eslint"
}
}
}