-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
35 lines (35 loc) · 826 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
{
"name": "simple-opening-hours",
"version": "1.0.0",
"description": "Less crazy opening hours parser",
"main": "dist/simple-opening-hours.js",
"directories": {
"example": "example",
"test": "test"
},
"dependencies": {},
"devDependencies": {
"eslint": "^3.16.1",
"tap": "^10.2.1",
"nodemon": "1.11.0"
},
"scripts": {
"test": "tap test/*.js --cov",
"compile": "tsc",
"watch": "nodemon -x \"npm test\"",
"develop": "compile & watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pke/simple-opening-hours.git"
},
"keywords": [
"opening hours"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/pke/simple-opening-hours/issues"
},
"homepage": "https://github.com/pke/simple-opening-hours#readme"
}