-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.34 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
{
"name": "nuxt-scss-to-js",
"version": "1.0.4",
"description": "Load SCSS Variables into Nuxt instance for use in Templates/Scripts.",
"repository": {
"type": "git",
"url": "https://github.com/sugoidesune/nuxt-scss-to-js"
},
"license": "MIT",
"contributors": [
{
"name": "sugoidesune <timar003@gmail.com>"
}
],
"files": [
"lib"
],
"main": "lib/module.js",
"scripts": {
"dev": "nuxt example",
"lint": "eslint --ext .js,.vue .",
"fix": "eslint --fix --ext .js,.vue .",
"release": "npm test && standard-version && git push --follow-tags && npm publish",
"test": "npm run lint && jest"
},
"dependencies": {
"scss-to-json": "^2.0.0"
},
"devDependencies": {
"@babel/core": "latest",
"@babel/preset-env": "latest",
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"@nuxtjs/eslint-config": "latest",
"@nuxtjs/module-test-utils": "latest",
"babel-eslint": "latest",
"babel-jest": "latest",
"eslint": "latest",
"husky": "latest",
"jest": "latest",
"nuxt-edge": "latest",
"standard-version": "latest"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"nuxt",
"nuxtjs",
"vue",
"scss",
"tailwind",
"bootstrap",
"vuetify",
"material",
"svg",
"theme",
"json"
]
}