-
-
Notifications
You must be signed in to change notification settings - Fork 161
/
Copy pathpackage.json
52 lines (52 loc) · 1.31 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
{
"name": "lost",
"version": "9.0.2",
"description": "LostGrid is a powerful grid system built in PostCSS that works with any preprocessor and even vanilla CSS.",
"main": "lost.js",
"repository": {
"type": "git",
"url": "https://github.com/peterramsing/lost.git"
},
"dependencies": {
"object-assign": "^4.1.1"
},
"keywords": [
"grid",
"fraction",
"ratio",
"postcss",
"postcss-plugin"
],
"author": "Cory Simmons & Peter Ramsing <[email protected]> (https://peter.coffee)",
"license": "MIT",
"bugs": {
"url": "https://github.com/peterramsing/lost/issues"
},
"homepage": "https://lostgrid.org",
"devDependencies": {
"chai": "^4.3.6",
"clean-css": "^5.3.0",
"codecov": "^3.8.2",
"eslint": "^8.16.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.0",
"lint-staged": "^12.4.2",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"postcss": "^8.4.14",
"postcss-preset-env": "^7.6.0",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.3",
"release-it": "^17.1.1"
},
"peerDependencies": {
"postcss": "^8.4.14"
},
"scripts": {
"test": "nyc mocha",
"lint": "eslint .",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"prepare": "husky install",
"release": "release-it"
}
}