-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.25 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
{
"name": "@nti/lib-interfaces",
"version": "1.158.0-alpha",
"author": "nextthought",
"license": "UNLICENSED",
"description": "Provides an interface for interacting with the dataserver via javascript.",
"main": "./src/index.js",
"exports": {
".": "./src/index.js",
"./package.json": "./package.json"
},
"type": "module",
"files": [
"src"
],
"scripts": {
"fix": "lib-scripts fix",
"test": "lib-scripts test",
"start": "lib-scripts test --watch",
"clean": "lib-scripts clean",
"check": "lib-scripts check",
"release": "lib-scripts release"
},
"repository": {
"type": "git",
"url": "https://github.com/NextThought/nti.lib.interfaces.git"
},
"publishConfig": {
"registry": "https://npm.nextthought.com"
},
"dependencies": {
"@nti/lib-commons": "NextThought/nti.lib.commons",
"@nti/lib-ntiids": "NextThought/nti.lib.ntiids",
"@nti/util-logger": "NextThought/nti.util.logger",
"date-fns": "^2.8.1",
"elementtree": "^0.1.6",
"get-video-id": "^3.1.8",
"invariant": "^2.2.0",
"iso8601-duration": "^1.1.1",
"js-base64": "^3.7.0",
"lru-cache": "^6.0.0",
"mime-types": "^2.1.0",
"uuid": "^8.3.0"
},
"devDependencies": {
"@nti/lib-scripts": "^2.0.0"
}
}