2020-02-24 10:02:16 +01:00
|
|
|
{
|
|
|
|
"name": "@samvv/bolt",
|
|
|
|
"version": "0.0.1",
|
|
|
|
"description": "A programming language for rapid prototyping",
|
|
|
|
"main": "lib/index.js",
|
2020-02-24 16:52:01 +01:00
|
|
|
"bin": {
|
2020-06-12 11:51:57 +02:00
|
|
|
"bolt": "build/bin/bolt.js",
|
|
|
|
"bolt-test": "build/bin/bolt-test.js"
|
2020-02-24 16:52:01 +01:00
|
|
|
},
|
2020-02-24 10:02:16 +01:00
|
|
|
"scripts": {
|
2020-05-30 11:31:38 +02:00
|
|
|
"watch": "webpack --watch --config webpack.dev.js",
|
|
|
|
"prepare": "webpack --config webpack.dev.js",
|
2020-06-12 16:38:35 +02:00
|
|
|
"test": "node lib/bin/bolt-test.js compare",
|
2020-06-07 22:24:34 +02:00
|
|
|
"generate-ast": "tsastgen src/ast-spec.ts:src/ast.ts",
|
2020-06-12 16:38:35 +02:00
|
|
|
"update-lkg": "node lib/bin/bolt-test.js create-snapshot lkg"
|
2020-02-24 10:02:16 +01:00
|
|
|
},
|
|
|
|
"author": "Sam Vervaeck <vervaeck.sam@skynet.be>",
|
2020-02-24 10:04:30 +01:00
|
|
|
"license": "GPL-3.0",
|
|
|
|
"repository": "https://github.com/samvv/Bolt",
|
|
|
|
"dependencies": {
|
2020-06-12 16:38:35 +02:00
|
|
|
"@types/commonmark": "^0.27.4",
|
|
|
|
"@types/diff": "^4.0.2",
|
2020-05-23 14:20:45 +02:00
|
|
|
"@types/fs-extra": "^9.0.1",
|
2020-06-06 19:30:23 +02:00
|
|
|
"@types/glob": "^7.1.2",
|
2020-05-25 11:29:19 +02:00
|
|
|
"@types/js-yaml": "^3.12.4",
|
2020-05-10 23:50:42 +02:00
|
|
|
"@types/microtime": "^2.1.0",
|
|
|
|
"@types/minimist": "^1.2.0",
|
2020-06-12 11:51:57 +02:00
|
|
|
"@types/node": "^14.0.13",
|
2020-06-07 00:21:15 +02:00
|
|
|
"@types/ora": "^3.2.0",
|
2020-05-25 11:29:19 +02:00
|
|
|
"@types/semver": "^7.2.0",
|
2020-06-07 08:36:15 +02:00
|
|
|
"@types/uuid": "^8.0.0",
|
2020-05-23 14:20:45 +02:00
|
|
|
"@types/yargs": "^15.0.5",
|
2020-06-12 11:51:57 +02:00
|
|
|
"chalk": "^4.1.0",
|
2020-06-12 16:38:35 +02:00
|
|
|
"commonmark": "^0.29.1",
|
|
|
|
"diff": "^4.0.2",
|
2020-06-06 19:30:23 +02:00
|
|
|
"fs-extra": "^9.0.1",
|
2020-02-24 16:52:01 +01:00
|
|
|
"glob": "^7.1.6",
|
2020-05-25 11:29:19 +02:00
|
|
|
"js-yaml": "^3.14.0",
|
2020-05-10 23:50:42 +02:00
|
|
|
"microtime": "^3.0.0",
|
|
|
|
"minimist": "^1.2.5",
|
2020-05-23 14:20:45 +02:00
|
|
|
"moment": "^2.26.0",
|
2020-06-07 00:21:15 +02:00
|
|
|
"ora": "^4.0.4",
|
2020-02-24 16:52:01 +01:00
|
|
|
"pegjs": "^0.11.0-master.b7b87ea",
|
|
|
|
"reflect-metadata": "^0.1.13",
|
2020-05-25 11:29:19 +02:00
|
|
|
"semver": "^7.3.2",
|
2020-05-09 17:56:54 +02:00
|
|
|
"source-map-support": "^0.5.19",
|
2020-06-07 08:36:15 +02:00
|
|
|
"uuid": "^8.1.0",
|
2020-05-09 17:56:54 +02:00
|
|
|
"yargs": "^15.3.1"
|
2020-02-24 16:52:01 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-06-06 19:30:23 +02:00
|
|
|
"@babel/core": "^7.10.2",
|
2020-05-30 11:31:38 +02:00
|
|
|
"@babel/plugin-proposal-class-properties": "^7.10.1",
|
2020-05-09 17:56:54 +02:00
|
|
|
"@types/chai": "^4.2.11",
|
2020-06-12 16:38:35 +02:00
|
|
|
"@types/tape": "^4.13.0",
|
2020-05-30 11:31:38 +02:00
|
|
|
"babel-loader": "^8.1.0",
|
|
|
|
"concurrently": "^5.2.0",
|
2020-06-12 16:38:35 +02:00
|
|
|
"tap-min": "^2.0.0",
|
|
|
|
"tape": "^5.0.1",
|
2020-05-30 11:31:38 +02:00
|
|
|
"ts-loader": "^7.0.5",
|
2020-06-06 19:30:23 +02:00
|
|
|
"typescript": "^3.9.5",
|
2020-05-30 11:31:38 +02:00
|
|
|
"webpack": "^4.43.0",
|
|
|
|
"webpack-cli": "^3.3.11"
|
2020-02-24 10:04:30 +01:00
|
|
|
}
|
2020-02-24 10:02:16 +01:00
|
|
|
}
|