-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
59 lines (59 loc) · 1.88 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
58
59
{
"name": "deploy-to-neocities",
"description": "Github Action to deplpoy a folder to Neocities.org",
"version": "1.1.12",
"author": "Bret Comnes <bcomnes@gmail.com> (https://bret.io/)",
"bugs": {
"url": "https://github.com/bcomnes/deploy-to-neocities/issues"
},
"dependencies": {
"@actions/core": "1.10.0",
"async-neocities": "2.1.4",
"minimatch": "5.1.1",
"ms": "2.1.3",
"pony-cause": "^2.1.4",
"webassert": "3.0.2"
},
"devDependencies": {
"@siteup/cli": "^2.0.0",
"@vercel/ncc": "^0.36.0",
"auto-changelog": "^2.0.0",
"browser-sync": "^2.27.7",
"dependency-check": "^4.1.0",
"gh-release": "^7.0.0",
"mkdirp": "^1.0.4",
"npm-run-all2": "^6.0.0",
"standard": "^17.0.0"
},
"homepage": "https://github.com/bcomnes/deploy-to-neocities#readme",
"keywords": [],
"license": "MIT",
"main": "index.js",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/bcomnes/deploy-to-neocities.git"
},
"scripts": {
"build": "npm run clean && run-p build:*",
"build:action": "rm -rf dist && ncc build index.js -o dist -s",
"build:site": "siteup --src . --dest public",
"clean": "rimraf public && mkdirp public",
"release": "git push --follow-tags && gh-release -y",
"start": "npm run watch",
"test": "run-s test:*",
"test:deps": "dependency-check . --no-dev --no-peer",
"test:standard": "standard",
"version": "run-s version:*",
"version:build": "npm run build:action && git add dist",
"version:changelog": "auto-changelog -p --template keepachangelog auto-changelog --breaking-pattern 'BREAKING CHANGE:' && git add CHANGELOG.md",
"watch": "npm run clean && run-p watch:*",
"watch:serve": "browser-sync start --server 'public' --files 'public'",
"watch:site": "npm run build:site -- -w"
},
"standard": {
"ignore": [
"dist"
]
}
}