This repository has been archived by the owner on Apr 28, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
56 lines (56 loc) · 2.14 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
{
"name": "postcss-ant",
"version": "2.1.1",
"license": "MIT",
"description": "Layouts made fun.",
"homepage": "https://corysimmons.github.io/postcss-ant",
"author": "Cory Simmons <github.cory@mailhero.io> (https://corysimmons.com)",
"contributors": [
"Neil Kistner"
],
"repository": "corysimmons/postcss-ant",
"main": "./build/index.js",
"jsnext:main": "./lib/index.js",
"babel": {
"presets": [
"es2015",
"stage-0"
],
"plugins": [
"transform-flow-strip-types",
"add-module-exports"
]
},
"scripts": {
"start": "npm-run-all -p babel test",
"babel": "babel -w lib -d build",
"test": "npm-run-all -p test:*",
"test:ava": "ava --verbose -w --source features/**/locked.css",
"test:chokidar": "chokidar test/features/**/style.css -c 'postcss -w --local-plugins -u ./build/index.js {path} -o (echo {path} | cut -d \".\" -f 1).posted.css'",
"test:browser-sync": "browser-sync start -s --no-open --no-notify --directory --startPath=test/features --files=test/features/**/index.html,test/features/**/style.posted.css,test/features/common.css,build/**/*",
"playground": "npm-run-all -p playground:*",
"playground:sass": "node-sass --output-style expanded -w playground/css/style.scss playground/css/style.css",
"playground:postcss": "postcss -w --local-plugins -u ./build/index.js -o playground/css/style.posted.css playground/css/style.css",
"playground:browser-sync": "browser-sync start -s --no-notify --startPath=playground --files=playground/index.html,playground/css/style.posted.css",
"markdown-toc": "markdown-toc -i README.md"
},
"dependencies": {
"chalk": "^1.1.3",
"lodash": "^4.16.4",
"postcss": "^5.2.5",
"postcss-value-parser": "^3.3.0"
},
"devDependencies": {
"ava": "^0.16.0",
"babel-cli": "^6.18.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-flow-strip-types": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"browser-sync": "^2.17.5",
"chokidar-cli": "^1.2.0",
"markdown-toc": "^0.13.0",
"npm-run-all": "^3.1.1",
"postcss-cli": "^2.6.0"
}
}