forked from node-modules/utility
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.32 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
{
"name": "utility",
"version": "1.12.0",
"description": "A collection of useful utilities.",
"main": "lib/utility.js",
"files": [
"lib"
],
"scripts": {
"test": "npm run lint && npm run test-local",
"test-local": "ava test/**/*.test.js",
"test-cov": "nyc ava test/**/*.test.js && nyc report --reporter=lcov",
"lint": "jshint .",
"ci": "npm run lint && npm run test-cov",
"autod": "autod -w --prefix '~' -e benchmark",
"test-optimized": "node --allow-natives-syntax --trace_opt --trace_deopt test/optimized.js"
},
"dependencies": {
"copy-to": "~2.0.1",
"escape-html": "~1.0.3"
},
"devDependencies": {
"autod": "*",
"ava": "^0.14.0",
"beautify-benchmark": "*",
"benchmark": "^2.1.0",
"contributors": "*",
"jshint": "*",
"moment": "^2.12.0",
"nyc": "6",
"object-assign": "^4.1.1",
"optimized": "1"
},
"homepage": "https://github.com/node-modules/utility",
"repository": {
"type": "git",
"url": "git://github.com/node-modules/utility.git",
"web": "https://github.com/node-modules/utility"
},
"keywords": [
"utility",
"util",
"utils",
"sha256",
"sha1",
"hash",
"hex"
],
"engines": {
"node": ">= 0.12.0"
},
"author": "fengmk2 <[email protected]> (http://fengmk2.com)",
"license": "MIT"
}