-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
56 lines (56 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
51
52
53
54
55
56
{
"name": "thenewboston",
"version": "1.1.0-alpha.5",
"description": "JavaScript library for thenewboston.",
"author": {
"name": "thenewboston-developers",
"url": "https://github.com/thenewboston-developers"
},
"scripts": {
"clean": "rimraf dist",
"prettier": "prettier --write --loglevel silent \"{,!(node_modules)/**/}*.ts\"",
"build": "npm run clean && npm run build:node && npm run build:web",
"build:node": "rollup -c",
"build:web": "browserify dist/index.js -p tinyify --no-flat -o dist/tnb.min.js -s tnb",
"test:no-build": "jest",
"test": "npm run build && npm run test:no-build",
"prepack": "npm run build && npm run test:no-build",
"lint": "eslint \"./src/**/*.{js,ts}\""
},
"main": "dist/index.js",
"module": "dist/index.esm.js",
"jsnext:main": "dist/index.esm.js",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"license": "MIT",
"files": [
"dist",
"src"
],
"dependencies": {
"@babel/runtime": "^7.13.9",
"axios": "^0.21.0",
"core-js": "^3.7.0",
"nock": "^13.0.11",
"tweetnacl": "^1.0.3"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@rollup/plugin-babel": "^5.2.1",
"@types/jest": "^26.0.15",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"browserify": "^17.0.0",
"eslint": "^7.21.0",
"jest": "^26.6.3",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"rollup": "^2.33.1",
"rollup-plugin-typescript2": "^0.29.0",
"tinyify": "^3.0.0",
"ts-loader": "^8.0.11",
"tsify": "^5.0.2",
"typescript": "^4.0.5"
}
}