-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "roth",
"version": "1.0.0",
"description": "ROTH Language",
"main": "./dist/index.js",
"scripts": {
"dev": "nodemon --exec babel-node src/index.js",
"build": "babel src --out-dir ./dist",
"test": "./node_modules/.bin/mocha --require @babel/register -R spec --ui bdd --watch --watch-extensions js test/**/*.js"
},
"bin": {
"roth": "./dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mihazs/roth.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mihazs/roth/issues"
},
"homepage": "https://github.com/mihazs/roth#readme",
"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@babel/node": "^7.6.1",
"@babel/preset-env": "^7.6.0",
"@babel/register": "^7.6.0",
"chai": "^4.2.0",
"mocha": "^6.2.0",
"nodemon": "^1.19.2",
"sinon": "^7.4.2"
},
"dependencies": {
"commander": "^3.0.1",
"itt": "^0.7.1",
"mocha-logger": "^1.0.6",
"moo": "^0.5.0",
"yargs": "^14.2.0"
}
}