-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.1 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
{
"name": "@cloudcannon/setup-task-list",
"type": "module",
"version": "0.0.12",
"description": "Parses config, files and folder structures to create a JSON task list file for setting up a site.",
"keywords": [
"CloudCannon"
],
"homepage": "https://github.com/CloudCannon/setup-task-list#readme",
"repository": {
"type": "git",
"url": "https://github.com/CloudCannon/setup-task-list.git"
},
"bugs": {
"url": "https://github.com/CloudCannon/setup-task-list/issues",
"email": "support@cloudcannon.com"
},
"main": "src/index.js",
"scripts": {
"test": "ava",
"test:watch": "ava --watch --verbose",
"test:coverage": "c8 --all ava",
"lint": "eslint src",
"release:latest": "npx np",
"release:next": "npx np prerelease --tag=next"
},
"files": [
"src/**/*.js"
],
"author": "CloudCannon <support@cloudcannon.com>",
"license": "ISC",
"devDependencies": {
"ava": "^3.15.0",
"c8": "^7.10.0",
"eslint": "^8.4.1",
"mockdate": "^3.0.5"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"dependencies": {}
}