-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.25 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
{
"name": "project-firefly",
"version": "1.3.4",
"description": "A CSS Support Validator.",
"main": "./src/index.js",
"bin": {
"firefly": "./src/index.js"
},
"scripts": {
"build": "node ./scripts/build-bcd.js > ./src/api/mdn-bcd.json && node ./scripts/build-firefly.js > ./src/api/firefly-alternatives.json",
"refresh": "rm -rf ./node_modules ./package-lock.json && npm install",
"start": "node ./src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jamerrone/graduation-project.git"
},
"keywords": [
"browser-compatibility",
"css",
"mdn-data",
"validation"
],
"author": "James Peter Perrone Jefferies",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Jamerrone/graduation-project/issues"
},
"homepage": "https://github.com/Jamerrone/graduation-project#readme",
"dependencies": {
"browserslist": "4.8.2",
"chalk": "3.0.0",
"chokidar": "3.3.1",
"cosmiconfig": "6.0.0",
"css-tree": "1.0.0-alpha.39",
"extend": "3.0.2",
"fast-glob": "3.1.1",
"mdn-browser-compat-data": "1.0.3",
"minimist": "1.2.0",
"string-similarity": "3.0.0"
},
"devDependencies": {
"eslint": "6.8.0",
"eslint-config-xo-space": "0.22.0"
}
}