-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 829 Bytes
/
package.json
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
{
"name": "async-interpreter",
"version": "1.0.0",
"description": "An asynchronous interpreter for Javascript written in the continuation passing style",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha test/AsyncInterpreterSpec"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/EconomicSpaceAgency/async-js-interpreter.git"
},
"author": "James E Foley (github.com/realisation)",
"license": "ISC",
"bugs": {
"url": "https://gitlab.com/EconomicSpaceAgency/async-js-interpreter/issues"
},
"homepage": "https://gitlab.com/EconomicSpaceAgency/async-js-interpreter#README",
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^5.2.0"
},
"dependencies": {
"@babel/parser": "^7.2.3",
"@babel/types": "^7.2.2"
}
}