-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.12 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.12 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "nitrozenio",
"version": "1.0.1",
"description": "Official Node.js SDK for the Nitrozen.io changelog API.",
"license": "MIT",
"author": "Nitrozen.io",
"homepage": "https://nitrozen.io",
"repository": {
"type": "git",
"url": "https://github.com/nitrozenio/nitrozen-node.git"
},
"keywords": [
"nitrozen",
"changelog",
"api",
"sdk",
"client"
],
"engines": {
"node": ">=18"
},
"main": "dist/index.js",
"types": "types/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"types"
],
"scripts": {
"build": "babel src -d dist",
"prepare": "npm run build",
"test": "mocha"
},
"overrides": {
"serialize-javascript": "^7.0.5",
"diff": "^8.0.3"
},
"browser": {
"fs": false
},
"dependencies": {
"superagent": "^10.2.2"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"expect.js": "^0.3.1",
"mocha": "^11.0.0",
"sinon": "^21.0.0"
}
}