-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
43 lines (43 loc) · 1.29 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
{
"name": "@thumbtack/thumbprint-scss",
"description": "CSS and Sass mixins for building Thumbtack UI",
"version": "4.0.3",
"author": "Tom Genoni <[email protected]>",
"main": "components.css",
"style": "components.css",
"files": [
"*.css",
"mixins.scss",
"mixins"
],
"repository": {
"type": "git",
"url": "git+https://github.com/thumbtack/thumbprint.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"bugs": {
"url": "https://github.com/thumbtack/thumbprint/issues"
},
"homepage": "https://github.com/thumbtack/thumbprint/blob/master/packages/thumbprint-scss/",
"license": "Apache-2.0",
"scripts": {
"start": "yarn generate-css",
"clear": "rm *.css",
"generate-css": "./generate-css.js",
"prepublishOnly": "../../scripts/should-build-package.js -- yarn start"
},
"devDependencies": {
"@thumbtack/thumbprint-tokens": "^12.1.1",
"autoprefixer": "^9.0.1",
"cssnano": "^4.1.0",
"fs-extra": "^8.1.0",
"glob": "^7.1.3",
"node-sass-tilde-importer": "2.0.0-alpha.1",
"p-map": "^3.0.0",
"postcss-cli": "^6.1.1",
"sass": "^1.49.9"
}
}