-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.09 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
{
"name": "@fails-components/data",
"version": "1.4.3",
"description": "Supplies data format classes for use within the fails ecosystem",
"author": "Marten Richter",
"license": "AGPL-3.0-or-later",
"repository": {
"type": "git",
"url": "git+https://github.com/fails-components/data.git"
},
"main": "src/data.js",
"source": "src/data.js",
"type": "module",
"engines": {
"node": ">=16"
},
"scripts": {
"test": "run-s test:lint",
"test:lint": "eslint ."
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/eslint-parser": "^7.17.0",
"classnames": "^2.2.6",
"cross-env": "^7.0.3",
"eslint": "^9.3.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^7.2.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.5.3",
"prettier-linter-helpers": "^1.0.0"
},
"dependencies": {
"color": "^3.1.3",
"globals": "^16.5.0"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
}
}