This repository was archived by the owner on Nov 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.14 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.14 KB
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
74
75
{
"name": "@joytocode/plainlogo",
"version": "0.1.0",
"description": "Logo design made plain.",
"repository": "https://github.com/joytocode/plainlogo",
"author": "JoyToCode <team@joytocode.com>",
"license": "MIT",
"scripts": {
"lint:base": "eslint --ext .vue --ext .js .",
"lint": "npm run lint:base -- --fix",
"posttest": "npm run lint -s",
"test": "jest",
"pretest:ci": "npm run lint:base -s",
"test:ci": "npm test -- --coverage",
"start": "cross-env HOST=0.0.0.0 PORT=4000 nuxt",
"build": "cross-env DEPLOY_ENV=GH_PAGES nuxt generate",
"deploy": "gh-pages -d dist --dotfiles -m \"Updated by $(git rev-parse HEAD | cut -c 1-8)\"",
"deploy:ci": "gh-pages --repo https://$GH_TOKEN@github.com/joytocode/plainlogo.git -d dist --dotfiles -m \"Updated by $(git rev-parse HEAD | cut -c 1-8)\""
},
"jest": {
"testEnvironment": "node",
"clearMocks": true,
"collectCoverageFrom": [
"src/**/*.js"
]
},
"babel": {
"presets": [
[
"babel-preset-env",
{
"targets": {
"node": "8"
},
"shippedProposals": true
}
]
]
},
"dependencies": {
"@nuxtjs/google-analytics": "^2.0.2",
"axios": "^0.18.0",
"blob-polyfill": "^2.0.20171115",
"blueimp-canvas-to-blob": "^3.14.0",
"change-case": "^3.0.2",
"color-string": "^1.5.2",
"file-saver": "^1.3.8",
"js-base64": "^2.4.5",
"lodash.debounce": "^4.0.8",
"nuxt": "^1.4.1",
"opentype.js": "^0.8.0",
"qs": "^6.5.2",
"vue-async-computed": "^3.3.1",
"vue-color": "^2.4.6",
"vue-social-sharing": "^2.3.3",
"vuetify": "^1.0.19"
},
"devDependencies": {
"babel-jest": "^23.0.1",
"babel-preset-env": "^1.7.0",
"cross-env": "^5.1.6",
"dotenv": "^6.0.0",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"eslint-plugin-vue": "^4.5.0",
"gh-pages": "^1.2.0",
"jest": "^23.1.0",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2"
}
}