forked from winksaville/AssemblyScript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 3.24 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
{
"name": "assemblyscript",
"description": "A subset of TypeScript that compiles to WebAssembly.",
"version": "0.3.0",
"author": "Daniel Wirtz <[email protected]>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/AssemblyScript/assemblyscript.git"
},
"bugs": {
"url": "https://github.com/AssemblyScript/assemblyscript/issues"
},
"keywords": [
"webassembly",
"wasm",
"typescript",
"compiler"
],
"bin": {
"asc": "bin/asc"
},
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build:runtime": "cd lib/runtime && npm install && npm run build && cd ../..",
"build:typescript": "cd lib/typescript && npm install && npm run build && cd ../..",
"build:diagnostics": "node scripts/build-diagnostics",
"build:library": "node scripts/build-library",
"build:bundle": "tsc -P src && node scripts/build-bundle",
"build": "(node scripts/check-typescript || npm run build:typescript) && npm run build:diagnostics && npm run build:library && npm run lint && npm run build:bundle",
"clean": "node scripts/clean",
"lint": "tslint --config tslint.json src/**/*.ts cli/**/*.ts assembly.d.ts",
"test": "ts-node -P tests/tsconfig.json tests",
"docs:api": "typedoc --tsconfig src/tsconfig.json --mode modules --name \"AssemblyScript API Documentation\" --out ../website/docs/api/ --readme none --ignoreCompilerErrors --excludeNotExported --excludePrivate",
"docs:std": "typedoc --tsconfig tsconfig.assembly.json --mode file --name \"AssemblyScript Standard Library Documentation\" --out ../website/docs/std/ --readme none --ignoreCompilerErrors --excludeExternals --excludePrivate --includeDeclarations",
"docs": "npm run docs:api && npm run docs:std"
},
"dependencies": {
"binaryen": "37.0.0-nightly.20170831",
"chalk": "^2.1.0",
"minimist": "^1.2.0",
"wabt": "0.0.13-nightly.20170628"
},
"devDependencies": {
"@protobufjs/base64": "^1.1.2",
"@types/chalk": "^0.4.31",
"@types/diff": "^3.2.1",
"@types/long": "^3.0.32",
"@types/minimist": "^1.2.0",
"@types/node": "^8.0.26",
"@types/rimraf": "^2.0.2",
"@types/tape": "^4.2.30",
"@types/webassembly-js-api": "0.0.1",
"browserify": "^14.4.0",
"diff": "^3.3.0",
"dts-bundle": "^0.7.3",
"gulp-header": "^1.8.9",
"gulp-sourcemaps": "^2.6.1",
"gulp-uglify": "^3.0.0",
"long": "^3.2.0",
"performance-now": "^2.1.0",
"rimraf": "^2.6.1",
"tape": "^4.8.0",
"ts-node": "^3.3.0",
"tslint": "^5.7.0",
"typedoc": "^0.8.0",
"typedoc-plugin-external-module-name": "github:dcodeIO/typedoc-plugin-external-module-name",
"typescript": "^2.5.2",
"vinyl-buffer": "^1.0.0",
"vinyl-fs": "^2.4.4",
"vinyl-source-stream": "^1.1.0"
},
"browser": {
"buffer": false,
"crypto": false,
"fs": false,
"os": false,
"source-map-support": false
},
"files": [
"assembly.d.ts",
"bin/asc",
"bin/asc.js",
"bin/asc.json",
"dist/assemblyscript.d.ts",
"dist/assemblyscript.js",
"dist/assemblyscript.js.map",
"index.js",
"index.d.ts",
"package.json",
"package-lock.json",
"README.md",
"tsconfig.assembly.json",
"tsconfig.base.json"
],
"false": {}
}