-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
45 lines (45 loc) · 959 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
36
37
38
39
40
41
42
43
44
45
{
"name": "tcl",
"version": "3.1.0",
"description": "Node.js Tcl binding",
"main": "index.js",
"gypfile": true,
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"coverage": "nyc --reporter=html --reporter=text-summary mocha",
"coverage:ci": "nyc --reporter=lcovonly --reporter=text-summary mocha",
"docs": "jsdoc -c jsdoc-conf.json ./README.md",
"lint": "jshint index.js lib test",
"test": "mocha"
},
"keywords": [
"tcl"
],
"author": "Uditha Atukorala <ua@nuked.zone>",
"license": "ISC",
"repository": "nukedzn/node-tcl",
"directories": {
"example": "./examples",
"lib": "./lib"
},
"files": [
"binding.gyp",
"index.js",
"gyp",
"lib",
"src"
],
"dependencies": {
"bindings": "^1.5.0",
"node-addon-api": "^4.2.0"
},
"devDependencies": {
"chai": "^4.1.2",
"jshint": "^2.9.5",
"mocha": "^9.2.0",
"nyc": "^15.1.0",
"sinon": "^4.1.1"
}
}