-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 926 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 926 Bytes
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
{
"name": "osdujs",
"version": "2.0.0",
"description": "Nodejs client and service to interact with OSDU applications",
"repository": {
"type": "git",
"url": "https://github.com/pariveda/osdujs.git"
},
"main": "src/index.js",
"types": "types/index.d.ts",
"scripts": {
"build": "npx typescript",
"test": "mocha 'tests/**/*.test.js'",
"test:unit": "mocha 'tests/**/*.unit.test.js'",
"test:integration": "mocha 'tests/**/*.integration.test.js'",
"document": "jsdoc -c jsdoc.json"
},
"husky": {
"hooks": {
"pre-commit": "npm run build && git add types/*"
}
},
"author": "Pariveda Solutions",
"license": "MIT",
"dependencies": {
"aws-sdk": "^2.773.0",
"axios": "^0.20.0"
},
"devDependencies": {
"better-docs": "^2.3.2",
"dotenv": "^8.2.0",
"husky": "^4.3.0",
"jsdoc": "^3.6.6",
"mocha": "^8.2.0",
"typescript": "^4.0.3"
}
}