-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 1.43 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": "jsontosass",
"description": "JSON to Sass converter for node",
"version": "0.2.2",
"maintainers": [
{
"name": "Christian Stuff",
"email": "[email protected]",
"web": "https://github.com/Regaddi"
}
],
"bugs": {
"web": "https://github.com/Regaddi/jsontosass/issues"
},
"licenses": [
{
"name": "MIT",
"url": "https://github.com/Regaddi/jsontosass/blob/master/LICENSE"
}
],
"homepage": "https://github.com/Regaddi",
"engines": {
"node": ">=0.10"
},
"files": [
"jsontosass.js"
],
"main": "jsontosass.js",
"scripts": {
"coverage": "nyc npm run test",
"prerelease": "npm test",
"release": "npm run prerelease && npm-release",
"release-major": "npm run release -- major",
"release-minor": "npm run release -- minor",
"release-patch": "npm run release -- patch",
"pretest": "semistandard",
"test": "mocha"
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.9",
"glob": "^7.1.6",
"mocha": "^6.2.2",
"npm-release": "^1.0.0",
"nyc": "^15.0.0",
"semistandard": "^14.2.0"
},
"nyc": {
"check-coverage": true,
"reporter": "lcov",
"report-dir": "coverage"
},
"semistandard": {
"globals": [
"after",
"beforeEach",
"describe",
"it"
]
},
"dependencies": {
"extend": "^3.0.0",
"param-case": "^3.0.3",
"repeat-string": "^1.5.4"
}
}