-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 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
{
"name": "validate-fptf",
"description": "Validate data in the Friendly Public Transport Format.",
"version": "3.0.0",
"main": "index.js",
"files": [
"index.js",
"lib",
"*.js"
],
"keywords": [
"fptf",
"friendly public transport format",
"public transport",
"transit"
],
"author": "Jannis R <mail@jannisr.de>",
"homepage": "https://github.com/public-transport/validate-fptf",
"repository": "public-transport/validate-fptf",
"bugs": "https://github.com/public-transport/validate-fptf/issues",
"license": "ISC",
"fptf": "1.2.1",
"engines": {
"node": ">=6"
},
"dependencies": {
"@sindresorhus/is": "^0.3.0",
"is-coordinates": "^2.0.2",
"is-currency-code": "^1.2.0"
},
"devDependencies": {
"friendly-public-transport-format": "^1.2.1",
"husky": "^0.14.3",
"standard": "^12.0.0",
"tape": "^4.8.0"
},
"scripts": {
"test": "node test.js",
"lint": "standard",
"prepush": "npm test && npm run lint",
"prepublishOnly": "npm run test && npm run lint"
}
}