assemblyscript/package.json

71 lines
2.3 KiB
JSON
Raw Normal View History

2017-09-28 13:08:25 +02:00
{
2017-12-05 15:06:44 +01:00
"name": "assemblyscript",
2017-12-04 04:14:57 +01:00
"version": "0.5.0",
2017-12-05 15:06:44 +01:00
"author": "Daniel Wirtz <dcode+assemblyscript@dcode.io>",
"license": "Apache-2.0",
2017-12-05 15:06:44 +01:00
"repository": {
"type": "git",
"url": "https://github.com/AssemblyScript/assemblyscript.git"
2017-12-05 15:06:44 +01:00
},
"bugs": {
"url": "https://github.com/AssemblyScript/assemblyscript/issues"
2017-12-05 15:06:44 +01:00
},
2017-11-29 00:18:14 +01:00
"dependencies": {
"@protobufjs/utf8": "^1.1.0",
2018-06-28 18:31:19 +02:00
"binaryen": "48.0.0-nightly.20180627",
"long": "^4.0.0"
2017-11-29 00:18:14 +01:00
},
2017-09-28 13:08:25 +02:00
"devDependencies": {
"@types/node": "^10.5.1",
2018-02-09 15:43:57 +01:00
"browser-process-hrtime": "^0.1.2",
2018-03-05 15:13:07 +01:00
"diff": "^3.5.0",
"glob": "^7.1.2",
2018-06-28 18:31:19 +02:00
"ts-loader": "^4.4.2",
"ts-node": "^7.0.0",
2018-05-06 01:32:58 +02:00
"tslint": "^5.10.0",
2018-03-19 01:12:18 +01:00
"typedoc": "^0.11.1",
"typedoc-plugin-external-module-name": "^1.1.1",
2018-06-14 16:23:37 +02:00
"typescript": "^2.9.2",
"webpack": "^4.14.0",
2018-06-28 18:31:19 +02:00
"webpack-cli": "^3.0.8"
2017-11-17 14:33:51 +01:00
},
"main": "index.js",
"types": "index.d.ts",
2017-12-04 04:14:57 +01:00
"bin": {
"asc": "bin/asc",
"asinit": "bin/asinit"
2017-12-04 04:14:57 +01:00
},
"engines": {
"node": ">=8"
},
2017-11-17 14:33:51 +01:00
"scripts": {
"build": "webpack --mode production --display-modules",
"clean": "node scripts/clean",
2018-02-25 23:21:32 +01:00
"lint": "npm run lint:compiler && npm run lint:library",
2018-03-13 14:03:57 +01:00
"lint:compiler": "tslint -c tslint.json --project src --formatters-dir lib/lint/formatters --format as",
"lint:library": "tslint -c tslint.json --project std/assembly --formatters-dir lib/lint/formatters --format as",
2018-02-25 23:21:32 +01:00
"test:config": "tsc --noEmit -p src --diagnostics --listFiles",
"test:parser": "node tests/parser",
"test:compiler": "node tests/compiler",
2018-02-25 23:21:32 +01:00
"test": "npm run test:config --scripts-prepend-node-path && npm run test:parser --scripts-prepend-node-path && npm run test:compiler --scripts-prepend-node-path",
"test:pr": "npm run clean && npm test && npm run build && npm test && npm run clean",
2018-03-19 01:12:18 +01:00
"all": "npm run lint && npm run clean && npm test && npm run build && npm test",
"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"
2017-12-05 15:06:44 +01:00
},
"files": [
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/",
"index.d.ts",
"index.js",
2017-12-05 15:06:44 +01:00
"LICENSE",
"NOTICE",
"package.json",
"package-lock.json",
"README.md",
2017-12-12 16:08:54 +01:00
"src/",
"std/",
"tsconfig-base.json"
2017-12-05 15:06:44 +01:00
]
2017-09-28 13:08:25 +02:00
}