-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
42 lines (42 loc) · 1 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
{
"name": "node-sass-json-importer",
"version": "0.0.0-development",
"description": "Allows importing json in sass files parsed by node-sass.",
"main": "dist/index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Updater/node-sass-json-importer.git"
},
"keywords": [
"sass",
"node-sass",
"importer",
"json"
],
"scripts": {
"test": "mocha --require @babel/register",
"compile": "mkdirp dist && babel src -d dist",
"prepublishOnly": "npm run compile"
},
"peerDependencies": {
"node-sass": ">=3.5.3"
},
"dependencies": {
"is-there": "^4.4.4",
"json5": "^2.1.1",
"lodash": "^4.17.15"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@babel/register": "^7.8.3",
"chai": "^4.2.0",
"mkdirp": "^1.0.3",
"mocha": "^7.0.1",
"node-sass": ">=3.5.3",
"semantic-release": "^17.0.2",
"semantic-release-github-pr": "^6.0.0"
}
}