-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.82 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
62
63
64
65
{
"name": "xumm-string-decode",
"version": "0.7.0",
"license": "ISC",
"description": "JS/TS lib to decode strings for the Xaman app",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*.js",
"dist/**/*.js.map",
"dist/**/*.d.ts"
],
"dependencies": {
"@ungap/url-search-params": "0.2.2",
"url": "0.11.4"
},
"devDependencies": {
"@eslint/js": "9.10.0",
"@types/eslint__js": "8.42.3",
"@types/jest": "29.5.12",
"@types/node": "22.5.4",
"browserify": "17.0.0",
"eslint": "9.10.0",
"jest": "29.7.0",
"nodemon": "3.1.4",
"ts-jest": "29.2.5",
"typescript": "5.5.4",
"typescript-eslint": "8.4.0"
},
"scripts": {
"build": "tsc && browserify -r .:xumm-string-decode -o dist/browserified.js",
"clean": "rm -rf dist",
"watch": "tsc -w",
"start": "tsc --build -w",
"dev": "clear;node node_modules/nodemon/bin/nodemon.js dist/evaluate.dev.js",
"prepublish": "npm run clean && npm run test && npm run build",
"test": "jest --ci --verbose",
"lint": "eslint .",
"test-8": "docker run -t --rm -v $(pwd):/usr/src/app node:8-slim sh -c 'cd /usr/src/app/; npm run test'",
"test-10": "docker run -t --rm -v $(pwd):/usr/src/app node:10-slim sh -c 'cd /usr/src/app/; npm run test'",
"test-12": "docker run -t --rm -v $(pwd):/usr/src/app node:12-slim sh -c 'cd /usr/src/app/; npm run test'"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git://github.com/XRPL-Labs/xumm-string-decode.git"
},
"readmeFilename": "README.md",
"engines": {
"node": ">=8.16.1"
},
"nodemonConfig": {
"ignore": [
"node_modules/*",
"src/*"
],
"ext": "js",
"delay": 100,
"events": {
"start": "echo \"\\033c\\x1b[36m\"$(date)\"\\n\\x1b[0m\""
}
}
}