-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·43 lines (43 loc) · 1.16 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
42
43
{
"name": "@gdbots/pbj",
"version": "3.0.2",
"description": "Pbj library for es6.",
"repository": {
"type": "git",
"url": "https://github.com/gdbots/pbj-js.git"
},
"license": "Apache-2.0",
"scripts": {
"build": "npm run clean && npm run test && npm run build:babel && npm run build:prepub",
"build:babel": "babel src --out-dir ./dist",
"build:prepub": "cp -rf ./{*.md,package.json} ./dist",
"clean": "rimraf ./dist",
"pub": "npm run build && cd dist && npm publish --access public",
"test": "tape -r ./tests/bootstrap.cjs './tests/**/*.test.js*' | faucet"
},
"type": "module",
"main": "./index.js",
"dependencies": {
"base-64": "^1.0.0",
"bignumber.js": "^9.0.0"
},
"peerDependencies": {
"lodash-es": "^4.17.19",
"md5": "^2.2.1",
"utf8": "^3.0.0",
"uuid": "^8.2.0 || ^9.0"
},
"devDependencies": {
"@babel/cli": "^7.10.4",
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/register": "^7.10.4",
"faucet": "^0.0.4",
"lodash-es": "^4.17.15",
"md5": "^2.2.1",
"rimraf": "^4.4.0",
"tape": "^5.3.2",
"utf8": "^3.0.0",
"uuid": "^8.2.0 || ^9.0"
}
}