-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 925 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
{
"name": "nettbuss-stations",
"description": "A list of Nettbuss.se stations.",
"version": "0.1.0",
"main": "index.json",
"files": ["index.json"],
"keywords": ["nettbuss", "nettbuss.se", "public transport", "coach", "bus"],
"author": "Jannis R <mail@jannisr.de>",
"homepage": "https://github.com/derhuerst/nettbuss-stations",
"repository": "derhuerst/nettbuss-stations",
"bugs": "https://github.com/derhuerst/nettbuss-stations/issues",
"license": "ISC",
"engines": {"node": ">=6"},
"devDependencies": {
"acorn": "^5.0.3",
"cheerio": "^0.22.0",
"estraverse": "^4.2.0",
"isomorphic-fetch": "^2.2.1",
"lodash.uniqby": "^4.7.0",
"natsort": "^1.0.6",
"tape": "^4.6.3",
"tap-min": "^1.2.1"
},
"scripts": {
"build": "node build.js > index.json",
"test": "node test.js | tap-min",
"prepublishOnly": "npm run build && npm test"
}
}