-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
45 lines (45 loc) · 1.29 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
{
"name": "currency-symbols",
"version": "1.0.0",
"description": "Currency symbol dataset",
"author": "Dan Gibbs",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/gibbs/currency-data/issues"
},
"homepage": "https://github.com/gibbs/currency-data",
"repository": {
"type": "git",
"url": "[email protected]:gibbs/currency-data.git"
},
"keywords": [
"currencies",
"data",
"dataset"
],
"engines": {
"npm": ">=8.1.0",
"node": ">=16.13.0"
},
"scripts": {
"generate": "node scripts/generate.js",
"lint:js": "standard scripts/**/*.js test/**/*.js",
"lint:yaml": "yamllint **/*.yaml --schema=CORE_SCHEMA",
"php:composer": "docker run -it -v \"$(pwd):/data/\" --entrypoint composer genv/php-cli:8.0 install",
"test:php": "docker run -it -v \"$(pwd):/data/\" genv/php-cli:8.0 vendor/bin/phpunit test/php/ || true",
"test:schema": "node test/schema.js",
"test:validate": "node test/validate.js"
},
"devDependencies": {
"csv-file-validator": "^1.12.0",
"csval": "^1.1.1",
"ejs": "^3.1.6",
"fast-xml-parser": "^4.0.0-beta.0",
"js-yaml": "^4.1.0",
"object-to-xml": "^2.0.0",
"objects-to-csv": "^1.3.6",
"standard": "^16.0.4",
"yaml-lint": "^1.2.4",
"yaml-schema-validator": "^1.2.3"
}
}