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>" ,
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" : {
2017-12-09 01:35:18 +01:00
"binaryen" : "40.0.0-nightly.20171209" ,
2017-12-16 02:27:39 +01:00
"glob" : "^7.1.2" ,
2017-12-05 15:06:44 +01:00
"minimist" : "^1.2.0" ,
"source-map-support" : "^0.5.0"
2017-11-29 00:18:14 +01:00
} ,
2017-09-28 13:08:25 +02:00
"devDependencies" : {
2017-11-29 00:24:14 +01:00
"@types/chalk" : "^2.2.0" ,
2017-09-28 13:08:25 +02:00
"@types/diff" : "^3.2.2" ,
2017-12-19 17:49:15 +01:00
"@types/glob" : "^5.0.34" ,
2017-09-28 13:08:25 +02:00
"@types/long" : "^3.0.32" ,
2017-12-05 15:06:44 +01:00
"@types/minimist" : "^1.2.0" ,
2017-12-21 10:14:53 +01:00
"@types/node" : "^8.5.1" ,
2017-11-29 00:18:14 +01:00
"chalk" : "^2.3.0" ,
"diff" : "^3.4.0" ,
2017-09-28 13:08:25 +02:00
"long" : "^3.2.0" ,
2017-12-05 13:35:14 +01:00
"ts-loader" : "^3.2.0" ,
2017-12-19 17:49:15 +01:00
"ts-node" : "^4.0.2" ,
2017-12-24 03:19:47 +01:00
"tslint" : "^5.8.0" ,
2017-12-05 13:35:14 +01:00
"typescript" : "^2.6.2" ,
"webpack" : "^3.10.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" : {
2017-12-13 00:11:45 +01:00
"asc" : "bin/asc"
2017-12-04 04:14:57 +01:00
} ,
2017-11-17 14:33:51 +01:00
"scripts" : {
2017-12-05 13:35:14 +01:00
"build" : "webpack" ,
2017-12-05 15:06:44 +01:00
"clean" : "rm dist/assemblyscript.*" ,
2017-12-11 02:03:15 +01:00
"test:config" : "npm run test:config:assembly --scripts-prepend-node-path && npm run test:config:portable --scripts-prepend-node-path && npm run test:config:src --scripts-prepend-node-path" ,
"test:config:assembly" : "tsc --noEmit -p std/assembly --diagnostics --listFiles" ,
"test:config:portable" : "tsc --noEmit -p std/portable --diagnostics --listFiles" ,
"test:config:src" : "tsc --noEmit -p src --diagnostics --listFiles" ,
"test:parser" : "node tests/parser" ,
"test:compiler" : "node tests/compiler" ,
2017-12-24 03:19:47 +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" ,
"lint" : "tslint --project src"
2017-12-05 15:06:44 +01:00
} ,
"files" : [
2017-12-12 16:08:54 +01:00
"bin/" ,
"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"
2017-12-05 15:06:44 +01:00
]
2017-09-28 13:08:25 +02:00
}