-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
41 lines (41 loc) · 1.34 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
{
"name": "almond.css",
"version": "1.2.2",
"description": "Collection of CSS styles to make simple websites look nicer.",
"main": "dist/almond.css",
"scripts": {
"build": "npm run build:raw && npm run build:min && npm run build:lite",
"build:raw": "node-sass src/index.scss dist/almond.css",
"build:min": "node-sass --output-style compressed src/index.scss dist/almond.min.css",
"build:lite": "npm run build:lite:raw && npm run build:lite:min",
"build:lite:raw": "node-sass src/index.lite.scss dist/almond.lite.css",
"build:lite:min": "node-sass --output-style compressed src/index.lite.scss dist/almond.lite.min.css",
"test": "cypress run",
"test:open": "cypress open",
"watch": "node-sass -w src/index.scss dist/almond.css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alvaromontoro/almond.css.git"
},
"keywords": [
"css",
"class-less",
"styles"
],
"author": "Alvaro Montoro <[email protected]> (https://alvaromontoro.com)",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/alvaromontoro/almond.css/issues"
},
"files": [
"/dist"
],
"homepage": "https://github.com/alvaromontoro/almond.css",
"devDependencies": {
"cypress": "^9.2.0",
"husky": "^8.0.3",
"node-sass": "^7.0.3",
"save-dev": "^0.0.1-security"
}
}