-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.42 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
{
"name": "near-abi",
"version": "0.1.1",
"description": "Typescript library providing NEAR smart contract ABI primitives",
"main": "lib/index.js",
"browser": "lib/index.js",
"types": "lib/index.d.ts",
"author": "Pagoda",
"license": "(MIT AND Apache-2.0)",
"dependencies": {
"@types/json-schema": "^7.0.11"
},
"devDependencies": {
"@types/jest": "^27.5.1",
"@typescript-eslint/eslint-plugin": "^5.30.1",
"@typescript-eslint/parser": "^5.30.1",
"bundlewatch": "^0.3.1",
"eslint": "^8.18.0",
"in-publish": "^2.0.0",
"jest": "^28.1.0",
"ts-jest": "^28.0.3",
"ts-jest-resolver": "^2.0.0",
"ts-morph": "^11.0.3",
"typedoc": "^0.23.11",
"typedoc-neo-theme": "^1.1.1",
"typescript": "^4.8.2",
"uglifyify": "^5.0.1"
},
"scripts": {
"dist": "yarn doc",
"prepublish": "not-in-install && yarn build || in-install",
"compile": "tsc -p ./tsconfig.json",
"dev": "yarn compile -w",
"doc": "typedoc src && touch docs/.nojekyll",
"build": "yarn compile",
"test": "jest test",
"lint": "eslint \"src/**/*.ts\"",
"fix": "eslint \"src/**/*.ts\" --fix",
"prefuzz": "yarn build",
"fuzz": "jsfuzz test/fuzz/borsh-roundtrip.js test/fuzz/corpus/"
},
"bundlewatch": {
"files": [
{
"path": "dist/near-abi.min.js",
"maxSize": "105kB"
}
]
},
"files": [
"lib",
"dist",
"browser-exports.js"
]
}