-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.67 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.67 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "@moneybutton/purse",
"version": "0.38.5",
"description": "Money Button configuration.",
"main": "dist/moneybutton-purse.cjs.js",
"module": "dist/moneybutton-purse.esm.js",
"unpkg": "dist/moneybutton-purse.iife.js",
"library": "MoneyButtonPurse",
"files": [
"dist/**"
],
"scripts": {
"lint": "standard --parser=babel-eslint",
"build": "rollup -c",
"build:dev": "yarn build",
"build:prod": "yarn build",
"build:watch": "yarn build -w",
"dev": "yarn build:watch",
"example-server": "http-server -p 8001 ./example"
},
"repository": "https://github.com/moneybutton/purse",
"author": "Yours Inc.",
"license": "Open-BSV",
"dependencies": {
"@babel/runtime": "7.5.5"
},
"devDependencies": {
"@babel/cli": "7.5.5",
"@babel/core": "7.5.5",
"@babel/plugin-proposal-object-rest-spread": "7.5.5",
"@babel/plugin-transform-runtime": "7.5.5",
"@babel/preset-env": "7.5.5",
"@babel/register": "7.5.5",
"@moneybutton/paymail-client": "^0.38.4",
"@rollup/plugin-commonjs": "11.0.1",
"@rollup/plugin-node-resolve": "7.0.0",
"@rollup/plugin-replace": "2.3.0",
"babel-eslint": "9.0.0",
"babel-loader": "8.0.4",
"bdd-lazy-var": "^2.5.4",
"body-parser": "^1.19.0",
"bsv": "^1.5.3",
"mocha": "^7.1.2",
"rollup": "1.29.0",
"rollup-plugin-babel": "4.3.3",
"rollup-plugin-node-builtins": "2.1.2",
"rollup-plugin-node-globals": "1.4.0",
"rollup-plugin-terser": "5.2.0",
"should": "^13.2.1",
"standard": "12.0.1"
},
"standard": {
"globals": [
"afterEach",
"beforeEach",
"describe",
"it"
],
"ignore": [
"docs/"
]
}
}