-
Notifications
You must be signed in to change notification settings - Fork 81
/
package.json
44 lines (44 loc) · 1.47 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
{
"name": "primitive-ui",
"version": "1.5.3",
"author": "Tania Rascia",
"license": "MIT",
"description": "A minimalist front-end design toolkit for developing web apps.",
"homepage": "https://taniarascia.github.io/primitive",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/taniarascia/primitive.git"
},
"bugs": {
"url": "https://github.com/taniarascia/primitive/issues"
},
"scripts": {
"sass:watch": "node-sass src/scss/ -o dist/css/ -w -r --source-map-embed --source-map-contents --output-style expanded",
"sass:build": "node-sass src/scss/ -o dist/css/ -r --source-map-embed --source-map-contents --output-style expanded && node-sass src/scss/main.scss dist/css/main.min.css --output-style compressed && npm run prefix",
"sass:build:docs": "node-sass src/scss/main.scss docs/css/main.css --source-map-embed --source-map-contents --output-style expanded",
"prefix": "postcss dist/css/main.min.css -r --use=autoprefixer --no-map",
"gulp-css": "gulp css",
"gulp-watch": "gulp watch"
},
"keywords": [
"sass",
"boilerplate",
"framework",
"css framework",
"design"
],
"private": false,
"devDependencies": {
"autoprefixer": "^9.7.6",
"cssnano": "^4.1.10",
"gulp": "^4.0.1",
"gulp-postcss": "^8.0.0",
"gulp-rename": "^2.0.0",
"gulp-sass": "^4.0.2",
"gulp-sourcemaps": "^2.6.5",
"node-sass": "^4.14.0",
"postcss-cli": "^7.1.1"
},
"dependencies": {}
}