-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
87 lines (87 loc) · 2.09 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
84
85
86
87
{
"name": "@aeternity/aepp-calldata",
"description": "Aeternity data serialization library",
"version": "1.9.1",
"author": "aeternity",
"license": "ISC",
"type": "module",
"homepage": "https://github.com/aeternity/aepp-calldata-js#readme",
"bugs": {
"url": "https://github.com/aeternity/aepp-calldata-js/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/aeternity/aepp-calldata-js.git"
},
"keywords": [
"aesophia",
"aeternity",
"calldata",
"decoder",
"encoder",
"fate",
"serialization"
],
"main": "cjs/main.cjs",
"types": "src/main.d.ts",
"exports": {
"types": "./src/main.d.ts",
"import": "./src/main.js",
"require": "./cjs/main.cjs"
},
"files": [
"cjs/*",
"src/*"
],
"browser": {
"./tests/test.js": "./tests/browser/test.js"
},
"sideEffects": false,
"dependencies": {
"blakejs": "^1.2.1",
"bs58": "^6.0.0",
"rlp": "^3.0.0",
"safe-buffer": "^5.2.1",
"sha.js": "^2.4.11"
},
"devDependencies": {
"@aeternity/aepp-cli": "^6.0.0",
"@babel/cli": "^7.25.9",
"@babel/eslint-parser": "^7.25.9",
"@babel/plugin-syntax-import-assertions": "^7.26.0",
"@babel/plugin-transform-modules-commonjs": "^7.25.9",
"ava": "6.1.3",
"babel-plugin-transform-rewrite-imports": "^1.5.3",
"benchmark": "2.1.4",
"browserify": "17.0.0",
"eslint": "8.57.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.29.1",
"nyc": "17.0.0",
"tape": "5.8.1"
},
"ava": {
"files": [
"tests/**/*",
"!tests/test.js",
"!tests/benchmark/*",
"!tests/browser/test.js"
]
},
"nyc": {
"all": true,
"include": [
"src/**/*.js"
],
"temp-dir": "build/.nyc_output"
},
"scripts": {
"browser-test-bundle": "browserify tests/[A-Z]*.js tests/**/*.js > build/js/tests.js",
"coverage": "nyc ava",
"build": "babel src --out-dir cjs --out-file-extension .cjs",
"prepare": "npm run build",
"test": "ava --verbose",
"test:watch": "ava --verbose --watch",
"lint": "eslint src tests"
}
}