-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.17 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.17 KB
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
{
"name": "@endorphinjs/postcss-plugin",
"version": "1.1.1",
"description": "PostCSS plugin for CSS scoping",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "mocha",
"prepare": "npm run test && npm run build"
},
"keywords": [
"postcss",
"endorphin"
],
"author": "Sergey Chikuyonok <serge.che@gmail.com>",
"license": "ISC",
"devDependencies": {
"@types/mocha": "^9.0.0",
"@types/node": "^16.9.6",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"eslint": "^7.32.0",
"mocha": "^9.1.1",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"dependencies": {
"postcss-selector-parser": "^6.0.10"
},
"peerDependencies": {
"postcss": "^8.4.18"
},
"mocha": {
"require": "ts-node/register",
"spec": "./test/*.ts"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/endorphinjs/postcss-plugin.git"
},
"bugs": {
"url": "https://github.com/endorphinjs/postcss-plugin/issues"
},
"homepage": "https://github.com/endorphinjs/postcss-plugin#readme"
}