-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.35 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.35 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
{
"name": "node-nc",
"version": "1.1.0",
"description": "Node console. A rails inspired command line for node.",
"main": "build/index.js",
"keywords": [
"console",
"async",
"profiler"
],
"scripts": {
"build": "rm -rf ./build && tsc -p .",
"watch": "rm -rf ./build && tsc -w -p .",
"prepublish": "npm run build && npm test",
"pretest": "tslint src/*.ts && npm run build",
"test": "nyc mocha build/test -- --recursive -R spec",
"posttest": "nyc report --reporter=html --reporter=lcov --reporter=text-summary && nyc check-coverage --statements 75 --branches 75 --functions 65 --lines 80",
"preversion": "npm test"
},
"bin": {
"nc": "build/index.js",
"node-nc": "build/index.js"
},
"repository": "nikostoulas/node-nc",
"author": "Nikos Kostoulas <nikostoulas@gmail.com>",
"license": "MIT",
"engines": {
"node": ">=6.0.0"
},
"dependencies": {
"glob": "^7.1.1",
"performance-now": "^2.0.0"
},
"typings": "build/index",
"devDependencies": {
"@types/mocha": "2.2.44",
"@types/node": "^22.15.2",
"@types/sinon": "4.3.1",
"@types/source-map-support": "0.4.2",
"@types/supertest": "2.0.4",
"mocha": "^10.8.2",
"nyc": "^17.1.0",
"should": "^13.2.3",
"sinon": "^20.0.0",
"source-map-support": "0.5.11",
"tslint": "5.10.0",
"typescript": "^5.8.3"
}
}