-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.85 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "microncss",
"version": "1.0.0-rc.4",
"description": "A fast low configuration css utility library.",
"type": "module",
"main": "lib/index.js",
"unpkg": "lib/dist/micron.css",
"jsdelivr": "lib/dist/micron.css",
"types": "lib/types/index.d.ts",
"bin": {
"microncss": "lib/index.js",
"micron": "lib/index.js"
},
"targets": {
"main": false,
"default": {
"source": "src/scss/micron.scss",
"distDir": "lib/dist"
}
},
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"compile": "rm -rf lib && npx rollup --config rollup.config.js && cp -r ./src/config ./lib && cp -r ./src/scss ./lib && npx parcel build",
"build": "node lib/index.js",
"clean": "rm -rf src/css && rm -rf microncss.config.js"
},
"keywords": [
"css",
"css utility",
"sass",
"microncss"
],
"author": "Justin Logan",
"license": "MIT",
"devDependencies": {
"@parcel/transformer-sass": "^2.4.0",
"@rollup/plugin-typescript": "^8.3.2",
"@types/jest": "^28.1.1",
"@types/node": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"eslint": "^8.13.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"jest": "^28.1.1",
"parcel": "^2.4.0",
"rollup": "^2.70.2",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^28.0.5",
"typescript": "^4.6.3"
},
"repository": {
"type": "git",
"url": "https://github.com/itsjustlogan/microncss"
},
"bugs": {
"url": "https://github.com/itsjustlogan/microncss/issues"
},
"homepage": "https://microncss.com",
"dependencies": {
"@fullhuman/postcss-purgecss": "^4.1.3",
"autoprefixer": "^10.4.4",
"chalk": "^5.0.1",
"cssnano": "^5.1.5",
"postcss": "^8.4.12",
"sass": "^1.49.9"
}
}