-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.15 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
{
"name": "@cloudcannon/command-builder",
"version": "1.1.8",
"description": "A script that builds the script that builds your site",
"main": "src/index.js",
"scripts": {
"test": "jest --collect-coverage",
"lint-autofix": "eslint --fix lib/** helpers/** options/** index.js",
"lint-code": "eslint lib/** helpers/** options/** index.js",
"lint": "npm run lint-autofix && npm run lint-code"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CloudCannon/command-builder"
},
"keywords": [
"SSG",
"static",
"site",
"generator",
"build",
"CloudCannon"
],
"files": [
"src/**/*.js"
],
"author": "Nathan Kennedy",
"license": "ISC",
"bugs": {
"url": "https://github.com/CloudCannon/command-builder/issues"
},
"homepage": "https://github.com/CloudCannon/command-builder#readme",
"devDependencies": {
"eslint": "^7.27.0",
"eslint-config-cloudcannon": "^1.0.0-rc5",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-mocha": "^8.1.0",
"jest": "^27.0.6"
}
}