-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.04 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
{
"name": "timestring-unit",
"version": "0.1.2",
"description": "Time string conversion",
"main": "index.js",
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "https://github.com/Pampattitude/node-timestring-unit.git"
},
"keywords": [
"node",
"nodejs",
"node.js",
"js",
"javascript",
"time",
"unit",
"ms",
"millisecond",
"second",
"string",
"conversion"
],
"scripts": {
"lint": "eslint --ignore-path .gitignore --ignore-pattern tests .",
"test": "nyc mocha -S --recursive tests"
},
"author": "Pampattitude",
"license": "LGPL",
"readmeFilename": "README.md",
"dependencies": {},
"devDependencies": {
"chai": "^4.1.1",
"dirty-chai": "^2.0.1",
"eslint": "^4.5.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"istanbul": "^0.4.5",
"mocha": "^3.5.0",
"nyc": "^11.1.0"
}
}