forked from Siilwyn/css-declaration-sorter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.37 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
{
"name": "css-declaration-sorter",
"version": "2.0.1",
"description": "Sorts CSS declarations fast and automatically in a certain order.",
"keywords": [
"postcss",
"postcss-plugin",
"css",
"declaration",
"sorter",
"property",
"order"
],
"homepage": "https://github.com/Siilwyn/css-declaration-sorter",
"bugs": "https://github.com/Siilwyn/css-declaration-sorter/issues",
"license": "MIT",
"author": "Selwyn <talk@selwyn.cc> (https://selwyn.cc/)",
"files": [
"src",
"bin",
"orders"
],
"main": "src/index.js",
"bin": {
"cssdeclsort": "bin/cssdeclsort.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Siilwyn/css-declaration-sorter.git"
},
"scripts": {
"start": "npm run watch",
"test": "node tests/test.js",
"preversion": "npm test",
"postversion": "git push && git push --tags && npm publish",
"lint": "eslint src/*.js bin/*.js tests/*.js",
"watch": "watch 'npm run test && npm run lint --silent' src bin tests",
"scrape": "node src/property-scraper",
"ci": "npm test && npm run lint -- --max-warnings 0"
},
"dependencies": {
"argh": "^0.1.4",
"postcss": "^6.0.0",
"read-file-stdin": "^0.2.0",
"timsort": "^0.3.0",
"write-file-stdout": "0.0.2"
},
"devDependencies": {
"eslint": "^4.1.0",
"tape": "^4.2.1",
"watch": "^1.0.1"
}
}