-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 972 Bytes
/
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
{
"name": "boostnote",
"version": "0.0.7",
"description": "Nodejs library for the Boostnote API",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prebuild": "rm -rf dist",
"build": "tsc",
"start": "tsc -w",
"test": "ts-mocha"
},
"peerDendencies": {},
"devDependencies": {
"chai": "^4.3.4",
"ts-mocha": "^8.0.0",
"typescript": "^4.2.4"
},
"author": "Christopher Tran <[email protected]>",
"homepage": "https://github.com/pfftdammitchris/boostnote-api#readme",
"keywords": [
"boostnote",
"boosthub",
"boost",
"api",
"collaboration",
"cloud",
"note",
"notes",
"docs",
"documents"
],
"license": "ISC",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "[email protected]:pfftdammitchris/boostnote-api.git"
},
"bugs": {
"url": "https://github.com/pfftdammitchris/boostnote-api/issues"
}
}