-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.17 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
{
"name": "parcel-plugin-css-modules-type-generator",
"version": "1.2.0",
"description": "Generates .d.ts files for CSS modules with Parcel",
"main": "src/index.js",
"scripts": {
"pretest": "find tests/** -name '*.d.ts' -delete",
"test": "node tests/index.test.js && cd ./tests/install-parcel && npm ci && npm test && cd ../install-parcel-bundler && npm ci && npm test",
"fmt": "prettier --write \"src/*.js\" \"tests/**/*.js\"",
"preversion": "npm test",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git://github.com/garthenweb/parcel-plugin-css-modules-type-generator"
},
"bugs": {
"url": "https://github.com/garthenweb/parcel-plugin-css-modules-type-generator/issues"
},
"engines": {
"node": "^8.9.0 || >= 10.13.0"
},
"keywords": [
"parcel",
"css",
"modules",
"css-modules",
"typescript",
"types"
],
"author": "Jannick Garthen <[email protected]>",
"license": "MIT",
"devDependencies": {
"parcel-bundler": "^1.12.4",
"postcss-modules": "^1.4.1",
"prettier": "^1.19.1"
},
"peerDependencies": {
"parcel-bundler": "^1.11.0"
}
}