-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.07 KB
/
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
{
"name": "@nkn/ncp",
"version": "1.1.1",
"main": "lib/index.js",
"exports": {
".": "./lib/index.js",
"./": "./lib/"
},
"scripts": {
"build": "babel src --out-dir lib",
"prepublish": "npm run-script build",
"test": "jest",
"pb": "protoc --js_out=import_style=commonjs,binary:. src/pb/*.proto"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nknorg/ncp-js.git"
},
"author": "NKN",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/nknorg/ncp-js/issues"
},
"homepage": "https://github.com/nknorg/ncp-js#readme",
"description": "",
"dependencies": {
"core-js-pure": "^3.6.4",
"google-protobuf": "^3.11.2",
"heap": "^0.2.6",
"setimmediate": "^1.0.5"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.5",
"@babel/plugin-proposal-class-properties": "^7.16.5",
"@babel/plugin-proposal-export-default-from": "^7.16.5",
"@babel/plugin-proposal-export-namespace-from": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"jest": "^25.1.0"
}
}