-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.74 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.74 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@calculemus/abt-lambda",
"version": "0.0.6",
"description": "Using @calculemus/abt to interpret lambda-calculus",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"nearley": "mkdir -p lib && nearleyc grammar.ne -o lib/rules.js",
"tsc": "tsc",
"watch": "tsc -w",
"prettier": "prettier --write src/*.ts src/**/*.ts *.json",
"prepublishOnly": "rm -f *~ && npm run nearley && tsc",
"test": "tsc && nyc mocha -r ts-node/register src/**/test/*.ts",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"author": "Calculemus LLC",
"license": "ISC",
"repository": "https://github.com/calculemuscode/abt-lambda",
"dependencies": {
"@calculemus/abt": "^0.1.3",
"immutable": "^3.8.2",
"moo": "^0.4.3",
"nearley": "^2.13.0",
"request": "^2.87.0"
},
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/mocha": "^5.2.1",
"@types/moo": "^0.4.0",
"@types/nearley": "^2.11.0",
"@types/node": "^10.3.2",
"chai": "^4.1.2",
"coveralls": "^3.0.1",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^12.0.2",
"prettier": "^1.13.5",
"ts-node": "^6.1.0",
"typescript": "^2.9.1"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"exclude": [
"src/**/*.d.ts",
"src/**/test/**/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"sourcemap": true,
"instrument": true
},
"prettier": {
"printWidth": 110,
"tabWidth": 4
}
}