-
-
Notifications
You must be signed in to change notification settings - Fork 667
/
Copy pathpackage.json
103 lines (103 loc) · 3.9 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
96
97
98
99
100
101
102
103
{
"name": "assemblyscript",
"description": "Definitely not a TypeScript to WebAssembly compiler.",
"keywords": [
"typescript",
"webassembly",
"compiler",
"assemblyscript",
"wasm"
],
"version": "0.0.0",
"author": "Daniel Wirtz <dcode+assemblyscript@dcode.io>",
"contributors": [],
"license": "Apache-2.0",
"homepage": "https://assemblyscript.org",
"repository": {
"type": "git",
"url": "https://github.com/AssemblyScript/assemblyscript.git"
},
"bugs": {
"url": "https://github.com/AssemblyScript/assemblyscript/issues"
},
"dependencies": {
"binaryen": "93.0.0-nightly.20200609",
"long": "^4.0.0",
"source-map-support": "^0.5.19",
"ts-node": "^6.2.0"
},
"devDependencies": {
"@types/node": "^14.0.13",
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"browser-process-hrtime": "^1.0.0",
"diff": "^4.0.2",
"eslint": "^7.2.0",
"glob": "^7.1.6",
"physical-cpu-count": "^2.0.0",
"semantic-release": "github:dcodeIO/semantic-release",
"source-map-support": "^0.5.19",
"ts-loader": "^7.0.5",
"ts-node": "^6.2.0",
"typescript": "^3.9.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"main": "index.js",
"types": "index.d.ts",
"bin": {
"asc": "bin/asc",
"asinit": "bin/asinit"
},
"scripts": {
"build": "npm run build:bundle && npm run build:dts",
"build:bundle": "webpack --mode production --display-modules",
"build:dts": "node scripts/build-dts && tsc --noEmit --target ESNEXT --module commonjs --experimentalDecorators tests/require/index-release",
"build:sdk": "node scripts/build-sdk",
"clean": "node scripts/clean",
"check": "npm run check:config && npm run check:require && npm run check:lint",
"check:config": "tsc --noEmit -p src --diagnostics --listFiles",
"check:require": "tsc --noEmit --target ESNEXT --module commonjs --experimentalDecorators tests/require/index",
"check:lint": "eslint --max-warnings 0 --ext js . && eslint --max-warnings 0 --ext ts .",
"test": "npm run test:parser && npm run test:compiler && npm run test:packages && npm run test:extension",
"test:parser": "node tests/parser",
"test:compiler": "node tests/compiler",
"test:packages": "cd tests/packages && npm run test",
"test:extension": "cd tests/extension && npm run test",
"make": "npm run clean && npm test && npm run build && npm test",
"all": "npm run check && npm run make",
"docs": "typedoc --tsconfig tsconfig-docs.json --mode modules --name \"AssemblyScript Compiler API\" --out ./docs/api --ignoreCompilerErrors --excludeNotExported --excludePrivate --excludeExternals --exclude **/std/** --includeDeclarations --readme src/README.md",
"postversion": "node scripts/postversion && npm run build:sdk",
"prepublishOnly": "node scripts/prepublish",
"postpublish": "node scripts/postpublish",
"asbuild": "npm run asbuild:untouched && npm run asbuild:optimized",
"asbuild:untouched": "node bin/asc src/glue/wasm/index.ts src/index.ts -t out/assemblyscript.untouched.wat -b out/assemblyscript.untouched.wasm -d out/assemblyscript.d.ts --debug --measure --runtime stub",
"asbuild:optimized": "node bin/asc src/glue/wasm/index.ts src/index.ts -t out/assemblyscript.optimized.wat -b out/assemblyscript.optimized.wasm -O3 --measure --runtime stub",
"astest": "ts-node tests/bootstrap"
},
"releaseFiles": [
"lib/rtrace/index.d.ts",
"lib/rtrace/index.js",
"lib/rtrace/README.md",
"lib/rtrace/package.json",
"lib/loader/index.d.ts",
"lib/loader/index.js",
"lib/loader/README.md",
"bin/",
"cli/",
"dist/",
"index.d.ts",
"index.js",
"LICENSE",
"NOTICE",
"package.json",
"package-lock.json",
"README.md",
"std/",
"tsconfig-base.json"
],
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/assemblyscript"
}
}