-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.08 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": "@nti/lib-commons",
"version": "2.51.0-alpha",
"author": "nextthought",
"license": "UNLICENSED",
"description": "Common utility javascript functions & classes.",
"main": "src/index.js",
"exports": {
".": "./src/index.js",
"./test-utils": "./test-utils.js",
"./package.json": "./package.json"
},
"type": "module",
"files": [
"src",
"test-utils.js"
],
"scripts": {
"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.commons.git"
},
"publishConfig": {
"registry": "https://npm.nextthought.com"
},
"dependencies": {
"@nti/lib-ntiids": "NextThought/nti.lib.ntiids",
"@nti/util-logger": "NextThought/nti.util.logger",
"content-type": "^1.0.4",
"isempty": "0.0.1",
"media-typer": "^1.1.0",
"tinycolor2": "^1.4.1",
"uuid": "^8.3.0"
},
"devDependencies": {
"@nti/lib-scripts": "^2.0.0"
}
}