-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
95 lines (95 loc) · 2.39 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
88
89
90
91
92
93
94
95
{
"name": "motoko",
"version": "3.9.0",
"description": "Compile and run Motoko smart contracts in Node.js or the browser.",
"author": "Ryan Vandersmith (https://github.com/rvanasa)",
"license": "Apache-2.0",
"main": "./index.js",
"types": "lib/versions/moc.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/dfinity/node-motoko.git"
},
"scripts": {
"build": "rimraf ./lib && tsc -p .",
"prepare": "husky install",
"generate": "node utils/generate",
"test": "jest",
"size-limit": "size-limit",
"precommit": "lint-staged",
"prepublishOnly": "run-s build test"
},
"dependencies": {
"cross-fetch": "3.1.5",
"debug": "4.3.4",
"isomorphic-parse-github-url": "1.0.2",
"sanitize-filename": "1.6.3"
},
"devDependencies": {
"@size-limit/preset-small-lib": "^8.2.4",
"@types/jest": "^28.1.3",
"@wasmer/wasi": "^1.0.2",
"cross-env": "^7.0.3",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"jest": "^28.1.3",
"lint-staged": "^13.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"size-limit": "^8.2.4",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"typescript": "^4.8.2"
},
"lint-staged": {
"{lib,contrib,utils}/**/*.{js,ts,jsx,tsx}": [
"prettier --write"
]
},
"directories": {
"lib": "lib",
"example": "examples"
},
"files": [
"index.js",
"interpreter.js",
"src/**/*",
"lib/**/*",
"contrib/**/*",
"versions/latest/**/*",
"packages/latest/**/*"
],
"keywords": [
"motoko",
"language",
"programming-language",
"dfinity",
"smart-contract",
"canister",
"browser",
"ic",
"icp",
"internet-computer",
"blockchain",
"cryptocurrency",
"nft",
"token"
],
"size-limit": [
{
"path": "lib/index.js"
},
{
"path": "packages/latest/base.json"
},
{
"path": "versions/latest/moc.min.js"
},
{
"path": "versions/latest/moc_interpreter.min.js"
},
{
"path": "versions/latest/didc.min.js"
}
]
}