-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.1 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
{
"name": "ethereum-lists",
"version": "0.1.0",
"description": "A Vanilla JS library to simply use EthereumList's data",
"main": "README.md",
"directories": {
"example": "example",
"lib": "lib"
},
"scripts": {
"jsdoc": "rm -r ./docs/* && ./node_modules/.bin/jsdoc ./lib/ethereum-lists.js README.md --destination docs",
"uglify": "./node_modules/.bin/uglifyjs lib/ethereum-lists.js -o lib/ethereum-lists.min.js -c -m --comments",
"beautify-ex": "./node_modules/.bin/uglifyjs example/example.js -o example/example.beautified.js -b quote_style=single --comments",
"all": "npm run beautify-ex && npm run uglify && npm run jsdoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dorianbayart/ethereum-lists.git"
},
"keywords": [
"ethereum",
"js",
"library"
],
"author": "Dorian Bayart",
"license": "MIT",
"bugs": {
"url": "https://github.com/dorianbayart/ethereum-lists/issues"
},
"homepage": "https://github.com/dorianbayart/ethereum-lists#readme",
"devDependencies": {
"jsdoc": "^3.6.11",
"uglify-js": "^3.17.3"
}
}