-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 886 Bytes
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 886 Bytes
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
{
"name": "get-all-css-properties",
"description": "A npm module to list all the CSS properties alphabetically.",
"keywords": [
"css"
],
"bugs": {
"email": "tejas@tejas.qa"
},
"files": [
"lib"
],
"author": {
"email": "tejas@tejas.qa",
"name": "Tejas Kumar",
"url": "https://twitter.com/tejaskumar_"
},
"contributors": [
"tejaskumar",
"robinpokorny"
],
"repository": {
"url": "git@github.com:TejasQ/get-all-css-properties.git",
"type": "git"
},
"scripts": {
"build": "tsc",
"preversion": "tsc"
},
"version": "1.0.5",
"main": "./lib/getAllCSSProperties.js",
"bin": "./lib/index.js",
"license": "MIT",
"engines": {
"node": ">=12.0.0"
},
"dependencies": {
"node-fetch": "^2.6.0"
},
"devDependencies": {
"@types/node-fetch": "^2.5.4",
"typescript": "^3.8.0-dev.20191228"
}
}