-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.01 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
{
"name": "as-random",
"description": "Generate random numbers with various distributions.",
"version": "0.1.0",
"author": "MaxGraey <maxgraey@gmail.com>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/MaxGraey/as-random.git"
},
"bugs": {
"url": "https://github.com/MaxGraey/as-random/issues"
},
"keywords": [
"random",
"distributions",
"generator",
"webassembly",
"wasm",
"as",
"assemblyscript"
],
"dependencies": {
"assemblyscript": "^0.18.15",
"@assemblyscript/loader": "^0.18.15"
},
"scripts": {
"asbuild:untouched": "asc assembly/index.ts --target debug",
"asbuild:optimized": "asc assembly/index.ts --target release",
"asbuild": "npm run asbuild:untouched && npm run asbuild:optimized",
"test": "node tests"
},
"devDependencies": {
"assemblyscript": "^0.18.15"
},
"releaseFiles": [
"assembly/",
"build/",
"README.md",
"LICENSE",
"package.json",
"yarn.lock"
]
}