-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.43 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
{
"name": "@nypl/nypl-core-objects",
"version": "3.0.3",
"description": "Exposes objects from NYPL/nypl-core as easy-to-work-with datastructures",
"main": "nypl-core-objects.js",
"dependencies": {
"axios": "^1.6.8",
"csv": "^5.3.2",
"csv-stringify": "^5.6.0",
"just-flatten": "^1.0.0"
},
"devDependencies": {
"chai": "3.5.0",
"chai-as-promised": "^7.1.1",
"mocha": "^9.1.3",
"nock": "^13.5.4",
"sinon": "2.3.6",
"standard": "^16.0.4"
},
"scripts": {
"test": "./node_modules/.bin/standard --env mocha && ./node_modules/.bin/mocha test",
"build-mappings": "rm -rf ./output/*.json && node ./bin/write-mappings",
"deploy-qa": "npm run build-mappings && aws s3 cp output s3://nypl-core-objects-mapping-qa/ --recursive --acl public-read --cache-control max-age=300 --profile nypl-digital-dev",
"deploy-production": "npm run build-mappings && aws s3 cp output s3://nypl-core-objects-mapping-production/ --recursive --acl public-read --cache-control max-age=300 --profile nypl-digital-dev"
},
"standard": {
"env": [
"mocha"
],
"globals": [
"expect"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/NYPL/nypl-core-objects.git"
},
"author": "The New York Public Library",
"license": "MIT",
"bugs": {
"url": "https://github.com/NYPL/nypl-core-objects/issues"
},
"homepage": "https://github.com/NYPL/nypl-core-objects#readme"
}