-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
56 lines (56 loc) · 1.35 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
{
"name": "specificity",
"version": "1.0.0",
"description": "Calculate the specificity of a CSS selector",
"keywords": [
"CSS",
"specificity"
],
"homepage": "https://github.com/keeganstreet/specificity",
"author": {
"name": "Keegan Street",
"url": "http://keegan.st"
},
"repository": {
"type": "git",
"url": "https://github.com/keeganstreet/specificity.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/keeganstreet/specificity/issues"
},
"type": "module",
"module": "./dist/esm/index.js",
"main": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"prebuild": "rm -rf ./dist",
"build": "tsc -b ./tsconfig.json ./tsconfig.cjs.json && cp package-cjs.json dist/cjs/package.json",
"test": "jest && node test/test-esm.mjs && node test/test-cjs.cjs"
},
"devDependencies": {
"@jest/globals": "^29.5.0",
"@types/css-tree": "^2.3.1",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"typescript": "^5.1.3"
},
"dependencies": {
"css-tree": "^2.3.1"
},
"files": [
"dist",
"package.json",
"README.md",
"LICENSE"
]
}