-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
33 lines (33 loc) · 924 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
{
"name": "nano-seconds",
"description": "Get the nano seconds of current time",
"version": "1.2.2",
"author": "Tree Xie <vicansocanbico@gmail.com>",
"keywords": [
"nanoseconds",
"nano-seconds",
"nano"
],
"main": "index.js",
"scripts": {
"size": "t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";",
"test": "node ./node_modules/.bin/eslint ./lib/*.js ./index.js && node ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha ./test/*.js --"
},
"engines": {
"node": ">=4.0.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vicanso/nano-seconds.git"
},
"devDependencies": {
"eslint": "^3.12.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.8.0",
"istanbul": "^0.4.5",
"mocha": "^5.2.0"
}
}