-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
45 lines (45 loc) · 1.13 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
{
"name": "near-contract-parser",
"version": "1.0.0",
"description": "Parse NEAR smart contract WASM code.",
"repository": {
"type": "git",
"url": "https://github.com/NEARFoundation/near-contract-parser"
},
"main": "dist/bundle.js",
"module": "dist/bundle.mjs",
"types": "dist/bundle.d.ts",
"source": "src/index.ts",
"scripts": {
"prepare": "husky install",
"format:check": "prettier --check .",
"format:fix": "prettier --write .",
"build": "parcel build",
"watch": "parcel watch",
"test": "jest"
},
"keywords": [
"near",
"nearprotocol",
"near-protocol",
"blockchain",
"smart-contract",
"webassembly",
"wasm"
],
"author": "Jacob Lindahl <[email protected]>",
"license": "MIT",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@parcel/packager-ts": "^2.11.0",
"@parcel/transformer-typescript-types": "^2.11.0",
"husky": "^7.0.4",
"jest": "^29.7.0",
"lint-staged": "^12.1.3",
"parcel": "^2.11.0",
"prettier": "^2.5.1",
"ts-jest": "^29.1.1",
"typescript": "^4.5.4"
},
"browserslist": "> 0.5%, last 2 versions, not dead"
}