2017-09-28 13:08:25 +02:00
|
|
|
{
|
2017-12-05 15:06:44 +01:00
|
|
|
"name": "assemblyscript",
|
2019-02-21 00:11:22 +01:00
|
|
|
"version": "0.6.0",
|
2017-12-05 15:06:44 +01:00
|
|
|
"author": "Daniel Wirtz <dcode+assemblyscript@dcode.io>",
|
2017-09-29 17:25:02 +02:00
|
|
|
"license": "Apache-2.0",
|
2017-12-05 15:06:44 +01:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2017-12-25 12:08:51 +01:00
|
|
|
"url": "https://github.com/AssemblyScript/assemblyscript.git"
|
2017-12-05 15:06:44 +01:00
|
|
|
},
|
|
|
|
"bugs": {
|
2017-12-25 12:08:51 +01:00
|
|
|
"url": "https://github.com/AssemblyScript/assemblyscript/issues"
|
2017-12-05 15:06:44 +01:00
|
|
|
},
|
2017-11-29 00:18:14 +01:00
|
|
|
"dependencies": {
|
2018-04-01 23:46:41 +02:00
|
|
|
"@protobufjs/utf8": "^1.1.0",
|
2019-04-08 08:18:21 +02:00
|
|
|
"binaryen": "77.0.0-nightly.20190407",
|
2018-09-09 03:51:29 +02:00
|
|
|
"glob": "^7.1.3",
|
2019-02-28 17:37:30 +01:00
|
|
|
"long": "^4.0.0",
|
2019-03-08 14:28:45 +01:00
|
|
|
"opencollective-postinstall": "^2.0.0",
|
2019-03-27 15:50:05 +01:00
|
|
|
"source-map-support": "^0.5.11"
|
2017-11-29 00:18:14 +01:00
|
|
|
},
|
2017-09-28 13:08:25 +02:00
|
|
|
"devDependencies": {
|
2019-04-08 08:23:18 +02:00
|
|
|
"@types/node": "^11.13.0",
|
2018-10-11 08:49:08 +02:00
|
|
|
"browser-process-hrtime": "^1.0.0",
|
2019-01-09 13:02:47 +01:00
|
|
|
"diff": "^4.0.1",
|
|
|
|
"ts-loader": "^5.3.3",
|
2018-07-04 21:47:58 +02:00
|
|
|
"ts-node": "^6.2.0",
|
2019-04-08 08:23:18 +02:00
|
|
|
"tslint": "^5.15.0",
|
2019-02-21 23:04:41 +01:00
|
|
|
"typedoc": "^0.14.0",
|
|
|
|
"typedoc-plugin-external-module-name": "^2.0.0",
|
2019-04-08 08:23:18 +02:00
|
|
|
"typescript": "^3.4.2",
|
2019-02-28 18:26:04 +01:00
|
|
|
"webpack": "^4.29.6",
|
2019-03-27 15:50:05 +01:00
|
|
|
"webpack-cli": "^3.3.0"
|
2017-11-17 14:33:51 +01:00
|
|
|
},
|
2017-12-10 21:59:45 +01:00
|
|
|
"main": "index.js",
|
|
|
|
"types": "index.d.ts",
|
2017-12-04 04:14:57 +01:00
|
|
|
"bin": {
|
2018-04-01 23:46:41 +02:00
|
|
|
"asc": "bin/asc",
|
|
|
|
"asinit": "bin/asinit"
|
2017-12-04 04:14:57 +01:00
|
|
|
},
|
2017-12-27 02:37:53 +01:00
|
|
|
"engines": {
|
2017-12-29 04:38:39 +01:00
|
|
|
"node": ">=8"
|
2017-12-27 02:37:53 +01:00
|
|
|
},
|
2017-11-17 14:33:51 +01:00
|
|
|
"scripts": {
|
2018-03-31 00:03:02 +02:00
|
|
|
"build": "webpack --mode production --display-modules",
|
2017-12-28 17:16:37 +01:00
|
|
|
"clean": "node scripts/clean",
|
2018-07-19 19:43:06 +02:00
|
|
|
"check": "npm run check:config && npm run check:compiler && npm run check:library",
|
|
|
|
"check:config": "tsc --noEmit -p src --diagnostics --listFiles",
|
|
|
|
"check:compiler": "tslint -c tslint.json --project src --formatters-dir lib/lint/formatters --format as",
|
|
|
|
"check:library": "tslint -c tslint.json --project std/assembly --formatters-dir lib/lint/formatters --format as",
|
|
|
|
"test": "npm run test:parser && npm run test:compiler",
|
2017-12-11 02:03:15 +01:00
|
|
|
"test:parser": "node tests/parser",
|
|
|
|
"test:compiler": "node tests/compiler",
|
2018-07-19 19:43:06 +02:00
|
|
|
"make": "npm run clean && npm test && npm run build && npm test",
|
|
|
|
"all": "npm run check && npm run make",
|
2019-03-08 14:24:48 +01:00
|
|
|
"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",
|
2019-03-11 21:00:18 +02:00
|
|
|
"postinstall": "opencollective-postinstall || exit 0"
|
2017-12-05 15:06:44 +01:00
|
|
|
},
|
|
|
|
"files": [
|
2018-10-20 12:39:59 +02:00
|
|
|
"lib/loader/index.d.ts",
|
|
|
|
"lib/loader/index.js",
|
|
|
|
"lib/loader/README.md",
|
2017-12-12 16:08:54 +01:00
|
|
|
"bin/",
|
2018-05-28 18:55:51 +02:00
|
|
|
"cli/",
|
2017-12-12 16:08:54 +01:00
|
|
|
"dist/",
|
2017-12-10 21:59:45 +01:00
|
|
|
"index.d.ts",
|
|
|
|
"index.js",
|
2017-12-05 15:06:44 +01:00
|
|
|
"LICENSE",
|
|
|
|
"NOTICE",
|
|
|
|
"package.json",
|
|
|
|
"package-lock.json",
|
2017-12-10 21:59:45 +01:00
|
|
|
"README.md",
|
2017-12-12 16:08:54 +01:00
|
|
|
"src/",
|
|
|
|
"std/",
|
|
|
|
"tsconfig-base.json"
|
2019-03-08 14:24:48 +01:00
|
|
|
],
|
|
|
|
"collective": {
|
|
|
|
"type": "opencollective",
|
|
|
|
"url": "https://opencollective.com/assemblyscript"
|
|
|
|
}
|
2017-09-28 13:08:25 +02:00
|
|
|
}
|