-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 936 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
{
"name": "parse-json-from-buffer",
"version": "1.0.8",
"description": "parse a json form a buffer",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"prestart": "npm run build",
"start": "node dist/index.js",
"pretest": "npm run build",
"test": "mocha --reporter spec",
"tag": "git tag v1.0.7",
"push": "git push origin master --tags",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fosk06/parseJsonFromBuffer.git"
},
"author": "thomas trividic <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/fosk06/parseJsonFromBuffer/issues"
},
"homepage": "https://github.com/fosk06/parseJsonFromBuffer#readme",
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^6.2.2",
"typescript": "^3.6.4"
},
"dependencies": {
"@types/node": "^12.12.3"
}
}