bolt/package.json

41 lines
1 KiB
JSON
Raw Normal View History

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",
"bin": {
"bolt": "lib/bin/bolt.js",
"bolt-treegen": "lib/bin/bolt-treegen.js"
},
2020-02-24 10:02:16 +01:00
"scripts": {
"test": "mocha lib/test"
},
"author": "Sam Vervaeck <vervaeck.sam@skynet.be>",
"license": "GPL-3.0",
"repository": "https://github.com/samvv/Bolt",
"dependencies": {
"@types/fs-extra": "^9.0.1",
"@types/glob": "^7.1.1",
2020-05-10 23:50:42 +02:00
"@types/microtime": "^2.1.0",
"@types/minimist": "^1.2.0",
"@types/node": "^14.0.5",
"@types/yargs": "^15.0.5",
2020-05-10 23:50:42 +02:00
"chalk": "^4.0.0",
2020-05-09 17:56:54 +02:00
"fs-extra": "^9.0.0",
"glob": "^7.1.6",
2020-05-10 23:50:42 +02:00
"microtime": "^3.0.0",
"minimist": "^1.2.5",
"moment": "^2.26.0",
"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",
"yargs": "^15.3.1"
},
"devDependencies": {
2020-05-09 17:56:54 +02:00
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"chai": "^4.2.0",
"mocha": "^7.2.0"
}
2020-02-24 10:02:16 +01:00
}