-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.04 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.04 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
{
"name": "scanf",
"version": "1.2.0",
"description": "C like scanf/sscanf module for node.js.",
"main": "index.js",
"engines": {
"node": ">= 4"
},
"directories": {
"test": "test"
},
"scripts": {
"prettier": "prettier --write './**/*.js'",
"test": "mocha --reporter spec",
"cov": "npm run coveralls",
"coveralls": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"
},
"typings": "./lib/scanf.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/Lellansin/node-scanf.git"
},
"keywords": [
"scanf",
"sscanf",
"readSync from stdin",
"shell input"
],
"author": "Lellansin",
"license": "MIT",
"bugs": {
"url": "https://github.com/Lellansin/node-scanf/issues"
},
"homepage": "https://github.com/Lellansin/node-scanf",
"devDependencies": {
"coveralls": "^2.11.8",
"istanbul": "^0.4.2",
"mocha": "^10.2.0",
"prettier": "^1.18.2",
"should": "^11.1.1"
}
}