forked from basscss/basscss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.42 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
69
70
71
72
{
"name": "u-basscss",
"version": "2.0.1",
"description": "Low-level CSS toolkit derived from basscss",
"style": "css/basscss.css",
"scripts": {
"build": "postcss ./src/* --config=postcss.config.js --dir=css",
"build-min": "UBASSCSS_MIN=1 postcss ./src/* --config=postcss.config.js --dir=css --ext .min.css",
"build-important": "UBASSCSS_IMPORTANT=1 postcss ./src/* --config=postcss.config.js --dir=css --ext .important.css",
"build-important-min": "UBASSCSS_MIN=1 UBASSCSS_IMPORTANT=1 postcss ./src/* --config=postcss.config.js --dir=css --ext .important.min.css",
"prepublish": "mkdir -p css && touch css/temp && rm css/* && npm run build && npm run build-min && npm run build-important && npm run build-important-min",
"start": "postcss -c postcss.config.js -w",
"karma": "karma start",
"karma:watch": "karma start --no-single-run",
"mocha": "mocha test/test",
"test": "npm run mocha && npm run karma"
},
"devDependencies": {
"autoprefixer": "^7.2.5",
"babel": "^6.3.26",
"babel-core": "^6.4.5",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.3.13",
"chai": "^4.1.2",
"css-loader": "^0.28.9",
"css-mixed-properties": "^1.1.0",
"cssnano": "^3.4.0",
"cssstats": "^3.2.0",
"json-loader": "^0.5.4",
"karma": "^2.0.0",
"karma-chai": "^0.1.0",
"karma-chai-plugins": "^0.9.0",
"karma-cli": "^1.0.1",
"karma-firefox-launcher": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-webpack": "^2.0.9",
"mocha": "^5.0.0",
"postcss": "^6.0.16",
"postcss-calc": "^6.0.1",
"postcss-cli": "^4.1.1",
"postcss-color-function": "^4.0.1",
"postcss-custom-media": "^6.0.0",
"postcss-custom-properties": "^6.2.0",
"postcss-discard-comments": "^2.0.4",
"postcss-import": "^11.0.0",
"postcss-importantly": "0.0.7",
"postcss-loader": "^2.0.10",
"postcss-remove-root": "0.0.2",
"postcss-reporter": "^5.0.0",
"style-loader": "^0.20.1",
"webpack": "^3.10.0"
},
"author": "Joe Farro (u-basscss), Brent Jackson (basscss)",
"license": "MIT",
"keywords": [
"atomic css",
"functional css",
"css",
"framework",
"oocss",
"basscss"
],
"repository": {
"type": "git",
"url": "https://github.com/tiffon/u-basscss.git"
},
"bugs": {
"url": "https://github.com/tiffon/u-basscss/issues"
},
"homepage": "https://github.com/tiffon/u-basscss"
}