-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
50 lines (50 loc) · 1.66 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
44
45
46
47
48
49
50
{
"name": "bitshares-report",
"version": "0.2.1",
"description": "Create a CSV export of content from the Bitshares Blockchain for use with Cointracking.info",
"main": "./dist/index.js",
"jsnext:main": "./es/index.js",
"author": "svk31",
"license": "MIT",
"dependencies": {
"async": "^2.6.0",
"csv": "^3.0.2",
"moment": "^2.22.0",
"node-fetch": "^2.2.0"
},
"devDependencies": {
"assert": "^1.4.1",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-1": "^6.24.1",
"browserify": "^16.2.2",
"cross-env": "^5.0.1",
"eslint": "^4.19.1",
"husky": "^0.14.3",
"mkdirp": "^0.5.1",
"mocha": "^5.2.0",
"prettier": "^1.11.1",
"pretty-quick": "^1.4.1",
"rimraf": "^2.6.1",
"uglify-js": "^3.3.10",
"bitsharesjs": "^1.8.0"
},
"peerDependencies": {
"bitsharesjs": "^1.8.0"
},
"scripts": {
"start": "cross-env NODE_ENV=node node lib/src/app.js",
"build:watch": "babel lib -d dist --watch",
"clean": "rimraf dist build es",
"prebuild": "npm run clean",
"build": "cross-env BABEL_ENV=cjs babel lib -d dist",
"build-es": "cross-env BABEL_ENV=es babel lib -d es",
"postbuild": "npm run build-es",
"precommit": "pretty-quick --staged",
"prebrowserify": "npm run build",
"browserify": "cross-env NODE_ENV=production browserify dist/index.js --standalone index -o build/index.js -d",
"postbrowserify": "cross-env NODE_ENV=production uglifyjs --compress --mangle --sequences --drop_console --mangle-props --screw-ie8 --output build/index.min.js -- build/index.js"
}
}