forked from harpagon210/sscjs
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 1.79 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
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@hive-engine/sscjs",
"version": "0.0.9",
"description": "a light javascript library to interact with the Steem/Hive Smart Contracts Sidechain",
"main": "lib/ssc.js",
"files": [
"dist",
"lib",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/hive-engine/sscjs.git"
},
"scripts": {
"lint": "eslint src tests",
"test": "jest",
"test:coverage": "jest --coverage",
"build:cjs": "cross-env BUILD_TYPE=cjs rollup -c -o lib/ssc.js",
"build:umd": "cross-env BUILD_TYPE=umd rollup -c -o dist/ssc.js",
"build:umd:min": "cross-env NODE_ENV=production BUILD_TYPE=umd rollup -c -o dist/ssc.min.js",
"build": "npm run build:cjs && npm run build:umd && npm run build:umd:min",
"pretest": "npm run build",
"prepare": "npm run build"
},
"keywords": [],
"author": "harpagon210 <[email protected]>",
"license": "MIT",
"dependencies": {
"axios": "^0.21.1"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"cross-env": "^5.1.1",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-prettier": "^2.7.0",
"jest": "^23.6.0",
"rollup": "^0.62.0",
"rollup-plugin-babel": "^3.0.5",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-regenerator": "^0.6.0",
"rollup-plugin-uglify": "^4.0.0"
},
"jest": {
"testRegex": "(/test/.*\\.js)$"
},
"bugs": {
"url": "https://github.com/hive-engine/sscjs/issues"
},
"homepage": "https://github.com/hive-engine/sscjs#readme",
"directories": {
"lib": "lib",
"test": "test"
}
}