-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
58 lines (58 loc) · 1.49 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
{
"name": "nuxt-bulma-slim",
"version": "0.4.0",
"description": "Nuxt.js module to automatically make a slim Bulma build of used features with Purgecss",
"license": "MIT",
"author": {
"name": "Sebastian Senf",
"email": "[email protected]",
"url": "https://enkrateia.me"
},
"main": "lib/index.js",
"repository": "https://github.com/mustardamus/nuxt-bulma-slim",
"bugs": "https://github.com/mustardamus/nuxt-bulma-slim/issues",
"keywords": [
"nuxt",
"nuxt.js",
"nuxt module",
"bulma",
"bulma css",
"slim",
"purgecss",
"sass",
"scss"
],
"engines": {
"node": ">=6.13.0"
},
"scripts": {
"dev": "PORT=9999 nuxt",
"build": "nuxt build",
"start": "PORT=9999 nuxt start",
"test": "jest -c jest.config.js --silent",
"test:watch": "jest -c jest.config.js --watch",
"lint": "eslint --ignore-path .gitignore .",
"upgrade": "npm-check --update --skip-unused --save-exact --no-emoji"
},
"dependencies": {
"ansicolor": "1.1.76",
"bulma": "0.7.1",
"debug": "^3.1.0",
"lodash.merge": "^4.6.1",
"node-sass": "4.9.2",
"purgecss": "1.0.1",
"sass-loader": "7.0.3"
},
"devDependencies": {
"eslint": "5.2.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "2.13.0",
"eslint-plugin-jest": "21.18.0",
"eslint-plugin-node": "7.0.1",
"eslint-plugin-prettier": "2.6.2",
"jest": "23.4.1",
"npm-check": "^5.7.1",
"nuxt": "1.4.1",
"prettier": "1.13.7"
}
}