This repository has been archived by the owner on May 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.52 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
57
58
{
"name": "@nice-labs/typed-css-modules",
"version": "1.3.0",
"description": "Typed CSS Modules",
"repository": {
"type": "git",
"url": "https://github.com/NiceLabs/typed-css-modules"
},
"license": "MIT",
"author": "Septs",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": "./dist/extensions/cli.js",
"scripts": {
"build": "rimraf dist && tsc",
"prepublishOnly": "npm run build",
"start": "tsc --watch",
"test": "mocha",
"lint": "eslint --ext .ts --fix ."
},
"dependencies": {
"chokidar": "^3.4.2",
"css-selector-tokenizer": "^0.7.3",
"glob": "^7.1.6",
"loader-utils": "^2.0.0",
"lodash": "^4.17.20",
"postcss": "^7.0.32",
"postcss-load-config": "^2.0.0",
"yargs": "^15.4.1"
},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/chokidar": "^2.1.3",
"@types/css-selector-tokenizer": "^0.7.0",
"@types/glob": "^7.1.3",
"@types/loader-utils": "^2.0.1",
"@types/lodash": "^4.14.159",
"@types/mocha": "^8.0.2",
"@types/node": "^14.0.27",
"@types/postcss-load-config": "^2.0.1",
"@types/yargs": "^15.0.5",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"chai": "^4.2.0",
"env": "0.0.2",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"mocha": "^8.1.1",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"ts-dedent": "^1.1.1",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"peerDependencies": {
"typescript": "*"
}
}