-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 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
67
68
69
70
71
72
73
{
"name": "ci-cd-no-cli",
"version": "1.0.0",
"description": "CI/CI example without using framework CLI",
"author": "Mohamed Sallam",
"license": "MIT",
"main": "",
"bugs": {
"url": "https://github.com/sallamx99/ci-cd-no-cli/issues"
},
"homepage": "https://github.com/sallamx99/ci-cd-no-cli#readme",
"keywords": [
"ci",
"cd",
"google-cloud",
"google-cloud-build"
],
"engines": {
"node": ">=10.0.0",
"npm": ">=6.0.0"
},
"scripts": {
"serve": "node ./scripts/serve.js",
"serve:e2e": "node ./scripts/cypress.js",
"bundle": "node ./scripts/bundle.js",
"lint:code": "eslint --ext .js,.vue --ignore-path .gitignore ./",
"lint:style": "stylelint '**/*.{css,vue}' --ignore-path .gitignore",
"lint:fix": "npm run lint:code -- --fix && npm run lint:style -- --fix",
"lint": "npm run lint:code && npm run lint:style",
"dups:src": "jsinspect --threshold 30 --minimum-instances 2 src",
"dups:test": "jsinspect --threshold 50 --minimum-instances 2 test/**/*.js",
"dups": "npm run dups:src && npm run dups:test",
"test:e2e": "node ./scripts/cypress.js --headless --no-video",
"test:unit": "mocha --require @babel/register ./test/unit/**/*.unit.js",
"test": "NODE_ENV=test nyc npm run test:unit",
"build": "npm run lint && npm run dups && npm run test && npm run test:e2e && npm run bundle"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sallamx99/ci-cd-no-cli.git"
},
"devDependencies": {
"@babel/preset-env": "^7.4.4",
"@babel/register": "^7.4.4",
"@vue/component-compiler-utils": "^3.0.0",
"autoprefixer": "^9.5.1",
"babel-eslint": "^10.0.1",
"babel-plugin-istanbul": "^5.1.4",
"chai": "^4.2.0",
"cypress": "^3.2.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-cypress": "^2.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-vue": "^5.2.2",
"jsinspect": "^0.12.7",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"parcel-bundler": "^1.12.3",
"postcss": "^7.0.16",
"prettier": "^1.17.0",
"shelljs": "^0.8.3",
"stylelint": "^10.0.1",
"stylelint-config-recommended": "^2.2.0",
"vue-hot-reload-api": "^2.3.3",
"vue-template-compiler": "^2.6.10"
},
"dependencies": {
"@babel/core": "^7.4.4",
"vue": "^2.6.10",
"vue-router": "^3.0.6"
}
}