-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
83 lines (83 loc) · 1.68 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "ass-js",
"description": "Assembler.js",
"version": "2.0.1",
"keywords": [
"x86",
"x64",
"x86_64",
"arm",
"arm64",
"native",
"native-code",
"machine-code",
"asm",
"compiler",
"assembler",
"compiler",
"intel",
"amd",
"nasm",
"gasm",
"ethereum",
"bitcoin",
"wasm",
"ethereum-vm",
"vm",
"blockchain"
],
"repository": {
"type": "git",
"url": "https://github.com/streamich/ass-js"
},
"main": "lib/index.js",
"dependencies": {
"fast-extend": "^0.0.2"
},
"devDependencies": {
"jest": "29.7.0",
"jest-tap-reporter": "1.9.0",
"ts-jest": "29.2.5",
"typescript": "5.6.3",
"ts-node": "10.9.2",
"gulp": "5.0.0",
"gulp-typescript": "5.0.1",
"mkdirp": "3.0.1",
"coffee-register": "2.2.0",
"static-buffer": "1.0.1",
"rimraf": "6.0.1",
"ethereumjs-vm": "4.2.0",
"semantic-release": "24.2.0",
"@types/node": "22.9.0",
"@types/jest": "29.5.14",
"mol-conventional-changelog": "2.0.0"
},
"scripts": {
"build": "npm run clean && npm run build-ts",
"build-ts": "gulp build-ts",
"clean": "rimraf lib/",
"test": "jest",
"test:coverage": "jest --coverage",
"semantic-release": "semantic-release"
},
"config": {
"commitizen": {
"path": "./node_modules/mol-conventional-changelog"
}
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
],
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": ".*/__tests__/.*\\.(test|spec)\\.(jsx?|tsx?)$",
"reporters": [
"jest-tap-reporter"
]
}
}