-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 961 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
34
35
36
37
38
39
40
41
42
{
"name": "exact-time",
"version": "0.0.3",
"description": "Get the exact date and time with ease",
"main": "node.js",
"browser": "browser.js",
"author": "Vincenzo Greco <[email protected]>",
"license": "MIT",
"keywords": [
"time",
"date",
"exact",
"exact time",
"exact date",
"current time"
],
"homepage": "https://github.com/vigreco/exact-time",
"repository": {
"type": "git",
"url": "https://github.com/vigreco/exact-time.git"
},
"scripts": {
"build": "rollup -c > node.js && BROWSER=true rollup -c > browser.js",
"pretest": "standard",
"test": "tap --cov --100 test/*.js",
"prepublish": "npm run build && npm run test"
},
"files": [
"node.js",
"browser.js"
],
"devDependencies": {
"rollup": "^0.53.0",
"rollup-plugin-replace": "^2.0.0",
"sinon": "^4.1.3",
"standard": "^10.0.3",
"tap": "^11.0.1"
},
"engines": {
"node": ">=4"
}
}