-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.39 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.39 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
{
"name": "@calculemus/abt",
"version": "0.1.3",
"description": "Abstract Binding Trees",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"tsc": "tsc",
"watch": "tsc -w",
"prettier": "prettier --write src/*.ts src/**/*.ts *.json",
"prepublishOnly": "rm -f *~ && 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-js",
"dependencies": {
"immutable": "^3.8.2"
},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/mocha": "^5.2.0",
"chai": "^4.1.2",
"chai-immutable": "^1.6.0",
"coveralls": "^3.0.0",
"mocha": "^5.0.4",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^11.6.0",
"prettier": "^1.11.1",
"ts-node": "^6.0.2",
"typescript": "^2.7.2"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"exclude": [
"src/**/test/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"sourcemap": true,
"instrument": true
},
"prettier": {
"printWidth": 110,
"tabWidth": 4
}
}