forked from indexzero/json-sass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.06 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
{
"name": "json-sass-vars",
"version": "3.1.0",
"description": "Transform JSON into SCSS variable syntax.",
"main": "lib/jsonSass.js",
"bin": "bin/json-sass",
"scripts": {
"build": "rm -rf lib && babel ./src -d ./lib",
"pretest": "npm run build",
"test": "mocha --require ./lib/test-init.js lib/**/__tests__/*-test.js",
"prepublish": "in-install || npm test"
},
"keywords": [
"sass",
"JSON"
],
"author": "Andrew Clark <[email protected]>",
"license": "ISC",
"contributors": [
"Charlie Robbins <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/acdlite/json-sass.git"
},
"babel": {
"presets": [
"babel-preset-es2015"
]
},
"dependencies": {
"in-publish": "^2.0.0",
"lodash.isplainobject": "^4.0.6",
"minimist": "~1.2.0",
"object-assign": "~4.1.1",
"through2": "~3.0.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"chai": "~4.2.0",
"mocha": "~6.1.4"
}
}