forked from plentycode/sass-export
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.27 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
{
"name": "sass-export",
"version": "0.1.7",
"description": "Exports Sass files to Json format, able to manage sections with annotations in comments.",
"main": "./dist/index.js",
"files": [
"bin",
"dist"
],
"scripts": {
"build": "tsc --p tsconfig.json",
"dev": "npm run build & npm run test",
"prepare": "npm run build",
"prestart": "npm run build",
"watch": "npm run build -- --watch",
"test": "mocha -r ts-node/register src/**/*.test.ts"
},
"keywords": [
"Sass",
"Sass Utilities",
"Scss",
"Sass Annotations",
"Sass to JS",
"Scss Json",
"Sass to Json",
"sass variables exporting",
"Node Sass"
],
"author": {
"name": "Carlos I Mercado",
"email": "[email protected]"
},
"bin": {
"sass-export": "./bin/sass-export"
},
"license": "ISC",
"dependencies": {
"glob": "^7.1.2",
"minimist": "^1.2.0",
"node-sass": "^4.5.2"
},
"repository": {
"type": "git",
"url": "https://github.com/plentycode/sass-export.git"
},
"devDependencies": {
"@types/chai": "^3.5.2",
"@types/mocha": "^2.2.41",
"@types/node": "^7.0.14",
"@types/node-sass": "^3.10.32",
"chai": "^3.5.0",
"mocha": "^3.3.0",
"ts-node": "^3.0.2",
"typescript": "^2.3.1"
}
}