mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-04-24 22:52:13 +00:00
73 lines
2.4 KiB
JSON
73 lines
2.4 KiB
JSON
{
|
|
"name": "assemblyscript",
|
|
"version": "0.5.0",
|
|
"author": "Daniel Wirtz <dcode+assemblyscript@dcode.io>",
|
|
"license": "Apache-2.0",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/AssemblyScript/assemblyscript.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/AssemblyScript/assemblyscript/issues"
|
|
},
|
|
"dependencies": {
|
|
"@protobufjs/utf8": "^1.1.0",
|
|
"binaryen": "46.0.0-nightly.20180427",
|
|
"glob": "^7.1.2",
|
|
"long": "^4.0.0",
|
|
"minimist": "^1.2.0",
|
|
"ts-node": "^5.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^9.6.6",
|
|
"browser-process-hrtime": "^0.1.2",
|
|
"chalk": "^2.4.1",
|
|
"diff": "^3.5.0",
|
|
"source-map-support": "^0.5.5",
|
|
"ts-loader": "^4.2.0",
|
|
"tslint": "^5.9.1",
|
|
"typedoc": "^0.11.1",
|
|
"typedoc-plugin-external-module-name": "^1.1.1",
|
|
"typescript": "^2.8.3",
|
|
"webpack": "^4.6.0",
|
|
"webpack-cli": "^2.0.15"
|
|
},
|
|
"main": "index.js",
|
|
"types": "index.d.ts",
|
|
"bin": {
|
|
"asc": "bin/asc",
|
|
"asinit": "bin/asinit"
|
|
},
|
|
"engines": {
|
|
"node": ">=8"
|
|
},
|
|
"scripts": {
|
|
"build": "webpack --mode production --display-modules",
|
|
"clean": "node scripts/clean",
|
|
"lint": "npm run lint:compiler && npm run lint:library",
|
|
"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",
|
|
"test:config": "tsc --noEmit -p src --diagnostics --listFiles",
|
|
"test:parser": "node tests/parser",
|
|
"test:compiler": "node tests/compiler",
|
|
"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",
|
|
"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"
|
|
},
|
|
"files": [
|
|
"bin/",
|
|
"dist/",
|
|
"index.d.ts",
|
|
"index.js",
|
|
"LICENSE",
|
|
"NOTICE",
|
|
"package.json",
|
|
"package-lock.json",
|
|
"README.md",
|
|
"src/",
|
|
"std/",
|
|
"tsconfig-base.json"
|
|
]
|
|
}
|