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": {
|
|
|
|
"bolt": "lib/bin/bolt.js"
|
|
|
|
},
|
2020-02-24 10:02:16 +01:00
|
|
|
"scripts": {
|
|
|
|
"test": "mocha lib/test"
|
|
|
|
},
|
|
|
|
"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-02-26 18:53:28 +01:00
|
|
|
"@types/fs-extra": "^8.1.0",
|
2020-05-09 17:56:54 +02:00
|
|
|
"@types/node": "^13.13.5",
|
|
|
|
"@types/xregexp": "^4.3.0",
|
|
|
|
"@types/yargs": "^15.0.4",
|
|
|
|
"acorn": "^7.2.0",
|
|
|
|
"fs-extra": "^9.0.0",
|
2020-02-24 16:52:01 +01:00
|
|
|
"glob": "^7.1.6",
|
|
|
|
"pegjs": "^0.11.0-master.b7b87ea",
|
|
|
|
"reflect-metadata": "^0.1.13",
|
2020-05-09 17:56:54 +02:00
|
|
|
"source-map-support": "^0.5.19",
|
2020-02-24 16:52:01 +01:00
|
|
|
"xregexp": "^4.3.0",
|
2020-05-09 17:56:54 +02:00
|
|
|
"yargs": "^15.3.1"
|
2020-02-24 16:52:01 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-05-09 17:56:54 +02:00
|
|
|
"@types/chai": "^4.2.11",
|
|
|
|
"@types/mocha": "^7.0.2",
|
2020-02-24 16:52:01 +01:00
|
|
|
"chai": "^4.2.0",
|
2020-05-09 17:56:54 +02:00
|
|
|
"mocha": "^7.1.2"
|
2020-02-24 10:04:30 +01:00
|
|
|
}
|
2020-02-24 10:02:16 +01:00
|
|
|
}
|