-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.99 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@eluvio/elv-utils-js",
"version": "1.0.1",
"description": "Utilities for the Eluvio Content Fabric",
"keywords": [
"Eluvio",
"content",
"fabric"
],
"main": "main.js",
"scripts": {
"build": "echo 'Deleting and recreating ./build directory...' && rimraf build && bin/makeBuildDir.sh && npm run build-main-js",
"build-main-js": "echo 'Rebuilding main.js...' && node ./bin/buildMain.js",
"check-dependency-updates": "echo 'Checking dependencies in package.json for updates...' && npx npm-check-updates",
"release": "echo 'Incrementing version and publishing to npmjs.com...' && cp package.json ./build/package.json && np --no-2fa",
"test": "mocha --recursive \"./test/unit/**/*.test.js\"",
"version": "echo 'Executing npm publish hook: version... (rebuilds ./build/dist)' && npm run build || true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eluv-io/elv-utils-js.git"
},
"author": "Eluvio, Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/eluv-io/elv-utils-js/issues"
},
"homepage": "https://github.com/eluv-io/elv-utils-js#readme",
"dependencies": {
"@eluvio/elv-abr-profile": "^1.0.1",
"@eluvio/elv-client-js": "^4.0.85",
"@eluvio/elv-js-helpers": "^6.3.1",
"@eluvio/elv-lro-status": "^3.0.7",
"@eluvio/ramda-fork": "^0.28.1",
"airtable": "^0.11.6",
"cbor": "^8.1.0",
"columnify": "^1.6.0",
"crocks": "^0.12.4",
"ellipsize": "^0.5.1",
"fraction.js": "^4.3.7",
"jsonpath-plus": "^7.2.0",
"kind-of": "^6.0.3",
"mime-types": "^2.1.35",
"moment": "^2.30.1",
"node-fetch": "^2.6.7",
"object-path": "^0.11.8",
"objectmodel": "^4.4.5",
"shell-escape": "^0.2.0",
"urijs": "^1.19.11",
"yargs": "^16.2.0"
},
"devDependencies": {
"chai": "^4.3.7",
"eslint": "^8.32.0",
"mocha": "^10.4.0",
"np": "^7.6.3",
"npm-check-updates": "^16.14.20",
"prompt": "^1.3.0",
"rimraf": "^3.0.2",
"sinon": "^15.0.1"
}
}