This repository has been archived by the owner on Jan 18, 2023. It is now read-only.
forked from harpagon210/sscjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 2.2 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
{
"name": "splinterlands-hive-engine",
"version": "1.0.0",
"description": "Lighweight library to interact with Hive Engine Sidechain",
"main": "dist/index.js",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/steem-monsters/splinterlands-hive-engine"
},
"scripts": {
"prepublishOnly": "npm run lint:fix && npm run build",
"build": "rimraf dist && rimraf tsconfig.tsbuildinfo && tsc",
"build:rollup": "npm run build:cjs && npm run build:umd && npm run build:umd:min",
"build:watch": "tsc -w",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"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",
"prepublish": "npm run build",
"dev": "NODE_ENV=development ts-node-dev --tree-kill --no-notify --respawn --transpile-only example/example.ts"
},
"keywords": [],
"authors": [
"harpagon210 <[email protected]>",
"reichert-splinterlands"
],
"license": "MIT",
"dependencies": {
"axios": "^0.27.2"
},
"devDependencies": {
"@types/jest": "^28.1.3",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"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": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^28.1.2",
"prettier": "^2.7.1",
"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",
"ts-jest": "^28.0.5",
"ts-node-dev": "^2.0.0"
}
}