-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 934 Bytes
/
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
{
"name": "postcss-responsive-text",
"version": "0.1.0",
"description": "Responsive font sizes without the hassle.",
"main": "index.js",
"scripts": {
"build": "rimraf ./dist && tsc",
"dev": "npx nodemon",
"test": "npm run build && mocha test"
},
"author": "Whitney Bluzma <thepunkyone@gmail.com>",
"license": "MIT",
"repository": "thepunkyone/postcss-responsive-text",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"typography"
],
"engines": {
"node": ">=12.0.0"
},
"peerDependencies": {
"postcss": "^8.3.0"
},
"devDependencies": {
"@types/node": "^18.15.3",
"chai": "^4.0.2",
"mocha": "^10.2.0",
"nodemon": "^2.0.21",
"prettier": "^2.8.4",
"rimraf": "^4.4.0",
"typescript": "^5.0.2"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"eslint": "^8.36.0"
}
}