-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
67 lines (67 loc) · 1.83 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "printf",
"version": "0.6.1",
"description": "Full implementation of the `printf` family in pure JS.",
"keywords": [
"printf",
"formatting",
"sprintf",
"format",
"output",
"print"
],
"homepage": "https://github.com/adaltas/node-printf",
"license": "MIT",
"author": "David Worms <david@adaltas.com> (https://www.adaltas.com)",
"maintainers": [],
"contributors": [
"David Worms <david@adaltas.com>",
"Aluísio Augusto Silva Gonçalves <aluisio@aasg.name>",
"Xavier Mendez <jmendeth@gmail.com>",
"LLeo <lleoem@gmail.com>",
"Derrell Lipman <https://github.com/derrell>"
],
"coffeelintConfig": {
"indentation": {
"level": "error",
"value": 2
},
"line_endings": {
"level": "error",
"value": "unix"
},
"max_line_length": {
"level": "ignore"
}
},
"main": "./lib/printf",
"types": "./lib/printf.d.ts",
"engines": {
"node": ">= 0.9.0"
},
"files": [
"/lib"
],
"scripts": {
"preversion": "grep '## Trunk' CHANGELOG.md && npm test",
"version": "version=`grep '^ \"version\": ' package.json | sed 's/.*\"\\([0-9\\.]*\\)\".*/\\1/'` && sed -i \"s/## Trunk/## Version $version/\" CHANGELOG.md && git add CHANGELOG.md",
"postversion": "git push origin master && git push origin master --tags && npm publish",
"patch": "npm version patch -m 'Bump to version %s'",
"minor": "npm version minor -m 'Bump to version %s'",
"major": "npm version major -m 'Bump to version %s'",
"test": "mocha test/**/*.coffee"
},
"devDependencies": {
"coffeescript": "^2.2.4",
"should": "13.2.1",
"mocha": "5.1.0",
"semver": "5.5.0"
},
"repository": {
"type": "git",
"url": "https://github.com/adaltas/node-printf.git"
},
"bugs": {
"url": "https://github.com/adaltas/node-printf/issues"
}
}