-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 926 Bytes
/
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
{
"name": "extract-sass-vars",
"version": "1.0.5",
"description": "",
"main": "dist/index.js",
"bin": {
"extract-sass-vars": "dist/cli.js"
},
"scripts": {
"test": "mocha ./**/*.test.ts --compilers ts:ts-node/register -G",
"build": "rm -rf dist && tsc -p . --outDir 'dist' && cp -R src/sass dist/",
"deploy": "npm run prepush && npm run build && npm publish",
"prepush": "tsc -p . --noEmit && yarn test"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"deasync": "^0.1.9",
"lodash": "^4.16.6",
"nearest-color": "^0.4.0",
"scss-symbols-parser": "^1.1.3",
"scss-to-json": "^2.0.0",
"yargs": "^12.0.5"
},
"devDependencies": {
"@types/lodash": "^4.14.38",
"@types/mocha": "^5.2.5",
"@types/node-sass": "^3.10.30",
"@types/yargs": "^12.0.8",
"mocha": "^5.2.0",
"ts-node": "^8.0.2",
"typescript": "^3.3.3"
}
}