-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
59 lines (59 loc) · 1.31 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
{
"name": "sass-export",
"version": "2.1.1",
"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": "TS_NODE_FILES=true mocha -r ts-node/register src/**/*.test.ts"
},
"engines": {
"node": ">=10"
},
"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.6",
"minimist": "^1.2.5",
"sass": "^1.32.8"
},
"repository": {
"type": "git",
"url": "https://github.com/plentycode/sass-export.git"
},
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.37",
"@types/sass": "^1.16",
"chai": "^4.3.4",
"mocha": "^8.3.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
}
}