-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 835 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": "package-reader",
"version": "3.0.0",
"description": "Easier reading from package.json file",
"main": "dst/index.js",
"typings": "dst/index",
"files": [
"dst/"
],
"scripts": {
"prebuild": "rm -rf dst/dst",
"test": "node dst/test.js",
"pretest": "npm run build",
"build": "./node_modules/.bin/tsc -p ./src"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/jovanmilenoski/package-reader.git"
},
"keywords": [
"nodejs",
"package.json",
"reader"
],
"author": "jovanmilenkoski",
"license": "ISC",
"bugs": {
"url": "https://github.com/jovanmilenoski/package-reader/issues"
},
"homepage": "https://github.com/jovanmilenoski/package-reader#readme",
"devDependencies": {
"@types/node": "^8.0.41",
"typescript": "^2.5.3"
}
}