-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.1 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
{
"name": "littlegiant",
"version": "1.0.0",
"description": "The little UI Framework",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"build": "npm-run-all -s build:tailwind build:uglify",
"build:tailwind": "npx postcss src/littlegiant.css -o css/littlegiant.css",
"build:tailwind-watch": "npx postcss src/littlegiant.css -o css/littlegiant.css --watch",
"build:uglify": "uglifycss css/littlegiant.css > css/littlegiant.min.css",
"clean-deps": "clean-deps",
"docs": "cd docs && npm start",
"deploy": "cd docs && npm run deploy"
},
"repository": {
"type": "git",
"url": "https://github.com/ClearTax/littlegiant"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ClearTax/littlegiant/issues"
},
"homepage": "https://github.com/ClearTax/littlegiant#readme",
"devDependencies": {
"autoprefixer": "^9.7.4",
"clean-deps": "^1.0.0",
"npm-run-all": "^4.1.5",
"postcss-cli": "^7.1.0",
"postcss-import": "^12.0.1",
"tailwindcss": "^1.1.4",
"uglifycss": "0.0.29"
}
}