-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 865 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
31
32
33
34
35
{
"name": "angu",
"version": "0.12.0",
"description": "A small interpreter for creating DSLs",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"bench": "tsc && node dist/*.bench.js",
"test": "tsc && mocha 'dist/*.test.js' 'dist/examples/index.js'",
"build": "rm -rf ./dist && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jsdw/angu.git"
},
"keywords": [
"interpreter",
"evaluator",
"calculator"
],
"author": "James Wilson",
"license": "MIT",
"bugs": {
"url": "https://github.com/jsdw/angu/issues"
},
"homepage": "https://github.com/jsdw/angu#readme",
"devDependencies": {
"@types/node": "^14.0.27",
"@types/benchmark": "^1.0.31",
"@types/mocha": "^8.0.0",
"benchmark": "^2.1.4",
"mocha": "^8.1.0",
"typescript": "^3.9"
}
}