-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.23 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
{
"contributors": [
{
"name": "Dexter Hardy",
"email": "dexter.hardy@ntegral.com",
"url": "http://www.ntegral.com"
}
],
"name": "@ntegral/lulu",
"version": "1.4.2",
"description": "Lulu Print API Client",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/ntegral/lulu-client"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"clean": "rm -rf dist",
"format": "prettier --write \"lib/**/*.ts\"",
"publish:npm": "npm publish --access public",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"Lulu",
"Print",
"API"
],
"author": "ntegral inc.",
"license": "ISC",
"dependencies": {
"jsonwebtoken": "^8.5.1",
"moment": "^2.24.0",
"request": "^2.88.2",
"request-promise": "^4.2.5"
},
"devDependencies": {
"@types/jest": "^24.9.1",
"@types/jsonwebtoken": "^8.3.8",
"@types/moment": "^2.13.0",
"@types/node": "^12.12.34",
"@types/request": "^2.48.4",
"@types/request-promise": "^4.1.46",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"ts-jest": "^24.3.0",
"ts-node": "^8.9.0",
"typescript": "^3.6.3"
}
}