-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 2.35 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
60
61
62
63
64
65
66
{
"name": "available-images",
"version": "1.0.0",
"description": "A simple list of all images available on DigitalOcean.",
"license": "Apache-2.0",
"private": true,
"engines": {
"node": "20.9.0"
},
"scripts": {
"build": "npm run build:clean && npm run build:template && npm run build:applications && npm run build:distributions && npm run build:static && npm run build:tool",
"build:clean": "do-vue clean",
"build:template": "BLANK_TEMPLATE=true do-vue template",
"build:applications": "IMAGE_TYPE=application node ./src/build/get.js",
"build:distributions": "IMAGE_TYPE=distribution node ./src/build/get.js",
"build:static": "copyfiles --up 2 ./src/static/{*,**/*} dist",
"build:tool": "do-vue tool src/available-images dist",
"deploy:spaces:comment": "do-vue comment available-images",
"dev": "npm run dev:prep && npm run dev:do-vue",
"dev:do-vue": "do-vue dev ./src/available-images ./dev 8000",
"dev:prep": "npm run build:template && npm run build:applications && npm run build:distributions && npm run dev:static",
"dev:static": "copyfiles --up 2 ./src/static/{*,**/*} dev",
"test": "npm run test:eslint && npm run test:scss",
"test:eslint": "eslint 'src/**/*.{js,vue}'",
"test:eslint:fix": "npm run test:eslint -- --fix",
"test:scss": "stylelint ./src/**/*.scss --config node_modules/do-bulma/.stylelintrc.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/do-community/available-images.git"
},
"keywords": [
"images"
],
"author": "DigitalOcean",
"bugs": {
"url": "https://github.com/do-community/available-images/issues"
},
"homepage": "https://github.com/do-community/available-images#readme",
"dependencies": {
"do-bulma": "github:do-community/do-bulma",
"do-vue": "github:do-community/do-vue",
"pretty-checkbox-vue": "^1.1.9",
"vue": "^3.4.15"
},
"devDependencies": {
"@babel/eslint-parser": "^7.23.3",
"copyfiles": "^2.4.1",
"eslint": "^8.56.0",
"eslint-plugin-vue": "^9.20.1",
"posthtml": "^0.16.6",
"posthtml-extend": "^0.6.5",
"sass": "^1.70.0",
"stylelint": "^16.2.0",
"stylelint-config-standard-scss": "^13.0.0",
"stylelint-order": "^6.0.4",
"vue-template-compiler": "^2.7.16"
},
"overrides": {
"do-vue": {
"pretty-checkbox-vue": {
"vue": "^3.0.0"
}
}
}
}