-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 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
{
"name": "eac-counter",
"version": "0.1.3",
"description": "Shows how much ETH has been transferred using the Ethereum Alarm Clock Protocol",
"main": "index.js",
"scripts": {
"test": "node index.js",
"build": "./node_modules/.bin/babel src --out-dir dist",
"build:browser": "npm run build && ./node_modules/.bin/browserify dist/EacCounter.js --standalone EacCounter > dist/eac-counter.browser.js",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chronologic/eac-counter.git"
},
"author": "Joseph Bagaric (github.com/Bagaric)",
"license": "ISC",
"bugs": {
"url": "https://github.com/chronologic/eac-counter/issues"
},
"homepage": "https://github.com/chronologic/eac-counter#readme",
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.5",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.5",
"browserify": "^16.2.3"
},
"dependencies": {
"@babel/polyfill": "^7.0.0",
"@babel/runtime": "^7.1.5",
"moment": "^2.23.0"
}
}