This repository was archived by the owner on Aug 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.97 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.97 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
{
"name": "3box-activity",
"version": "0.0.9",
"description": "An API for dapps to create an Ethereum activity feed",
"main": "lib/3boxActivity.js",
"directories": {
"lib": "lib"
},
"scripts": {
"test": "jest --runInBand",
"coverage": "jest --coverage --runInBand --testURL=\"http://localhost\"",
"lint": "./node_modules/.bin/standard --verbose src/**",
"build:es5": "./node_modules/.bin/babel src --out-dir lib --ignore=src/__tests__/,src/__mocks__/",
"build:dist": "./node_modules/.bin/webpack --config webpack.config.js --mode=development",
"build:dist:prod": "./node_modules/.bin/webpack --config webpack.config.js --mode=production --output-filename 3box-activity.min.js",
"build": "npm run build:es5; npm run build:dist; npm run build:dist:prod",
"generate-readme": "cp readme-template.md README.md; ./node_modules/.bin/jsdoc2md src/*.js >> README.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/uport-project/3box-activity.git"
},
"author": "Cristobal Castillo <cristobal.castillo@consensys.net>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/uport-project/3box-activity/issues"
},
"homepage": "https://github.com/uport-project/3box-activity#readme",
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.1.5",
"babel-core": "7.0.0-bridge.0",
"babel-loader": "^7.1.5",
"jest": "^23.5.0",
"jsdoc-to-markdown": "^4.0.1",
"standard": "^12.0.1",
"uglify-es": "^3.3.9",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack": "^4.26.0",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"etherscan-api": "^8.1.3"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"testURL": "http://localhost"
}
}