-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 811 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 811 Bytes
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
{
"name": "@protodev/napi",
"private": true,
"version": "0.0.0",
"main": "dist/index.js",
"scripts": {
"clean": "rm -rf ./node_modules && npm install && pnpm recursive run clean",
"test": "pnpm run test",
"build": "pnpm recursive install && pnpm recursive run build",
"rebuild": "npm run clean && npm run build"
},
"author": {
"name": "Protodev Technology Group LLC.",
"email": "napi@protodev.com",
"url": "http://www.protodev.com/napi"
},
"license": "UNLICENSED",
"description": "",
"dependencies": {
"inversify": "4.13.0",
"node": "10.7.0",
"reflect-metadata": "0.1.12",
"source-map-support": "0.5.6",
"ts-node": "7.0.0"
},
"devDependencies": {
"@types/node": "10.12.18",
"mocha": "^6.0.1",
"typescript": "^3.3.3333"
}
}