-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.05 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.05 KB
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
{
"name": "storedsafe",
"version": "2.1.0",
"description": "JavaScript bindings for the StoredSafe REST-like API.",
"main": "lib/cjs/index.node.js",
"browser": "lib/esm/index.browser.js",
"author": "Oscar Mattsson",
"license": "Apache-2.0",
"scripts": {
"clean": "rimraf lib",
"build": "npm run clean && tsc -p tsconfig.cjs.json && tsc -p tsconfig.esm.json",
"pack": "npm run build && npm pack",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/storedsafe/storedsafe-javascript.git"
},
"keywords": [
"storedsafe"
],
"bugs": {
"url": "https://github.com/storedsafe/storedsafe-javascript/issues"
},
"files": [
"./lib"
],
"homepage": "https://github.com/storedsafe/storedsafe-javascript#readme",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/lodash.merge": "^4.6.9",
"@types/node": "^22.9.0",
"jest": "^29.7.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"typescript": "~5.6.x"
},
"dependencies": {
"lodash.merge": "^4.6.2"
}
}