forked from AssemblyScript/assemblyscript
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 loc) · 2.53 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
{
"name": "dmcscript",
"version": "0.1.81",
"author": "Qiangyuzhou <[email protected]>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/ultrain-os/ultrascript.git"
},
"bugs": {
"url": "https://github.com/ultrain-os/ultrascript/issues"
},
"dependencies": {
"@protobufjs/utf8": "^1.1.0",
"binaryen": "84.0.0-nightly.20190522",
"glob": "^7.1.4",
"long": "^4.0.0",
"opencollective-postinstall": "^2.0.0",
"source-map-support": "^0.5.12"
},
"devDependencies": {
"@types/node": "^11.13.14",
"browser-process-hrtime": "^1.0.0",
"diff": "^4.0.1",
"ts-loader": "^5.4.5",
"ts-node": "^6.2.0",
"tslint": "^5.17.0",
"typedoc-plugin-external-module-name": "^2.1.0",
"typescript": "^3.5.1",
"webpack": "^4.33.0",
"webpack-cli": "^3.3.4"
},
"main": "index.js",
"types": "index.d.ts",
"bin": {
"dsc": "bin/dsc",
"dsinit": "bin/dsinit"
},
"engines": {
"node": ">=8"
},
"scripts": {
"build": "npm run build:bundle && npm run build:dts",
"build:bundle": "webpack --mode production --display-modules",
"build:dts": "node scripts/build-dts",
"clean": "node scripts/clean",
"check": "npm run check:config && npm run check:compiler",
"check:config": "tsc --noEmit -p src --diagnostics --listFiles",
"check:compiler": "tslint -c tslint.json --project src --formatters-dir lib/lint/formatters --format as",
"test": "npm run test:parser && npm run test:compiler",
"test:parser": "node tests/parser",
"test:compiler": "node tests/compiler",
"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",
"postinstall": "opencollective-postinstall || exit 0"
},
"files": [
"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"
],
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/assemblyscript"
}
}