-
-
Notifications
You must be signed in to change notification settings - Fork 687
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.09 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.09 KB
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
{
"name": "@assemblyscript/rtrace",
"description": "A tiny utility to sanitize the AssemblyScript runtime.",
"keywords": [
"assemblyscript",
"rtrace",
"webassembly",
"wasm"
],
"version": "0.0.0",
"author": "Daniel Wirtz <dcode+assemblyscript@dcode.io>",
"license": "Apache-2.0",
"homepage": "https://assemblyscript.org",
"repository": {
"type": "git",
"url": "https://github.com/AssemblyScript/assemblyscript.git",
"directory": "lib/rtrace"
},
"bugs": {
"url": "https://github.com/AssemblyScript/assemblyscript/issues"
},
"type": "module",
"main": "index.js",
"types": "index.d.ts",
"exports": {
"import": "./index.js",
"require": "./umd/index.js"
},
"bin": {
"rtplot": "bin/rtplot.js"
},
"scripts": {
"build": "npx esm2umd rtrace index.js > umd/index.js",
"test": "node tests"
},
"dependencies": {
"d3": "^6.3.1",
"jsdom": "^16.4.0"
},
"files": [
"index.d.ts",
"index.js",
"package.json",
"umd/index.d.ts",
"umd/index.js",
"umd/package.json",
"bin/rtplot.js",
"README.md"
]
}