-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.18 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
{
"name": "osmify",
"version": "0.1.0",
"description": "OpenStreetMap street address parser",
"main": "index.js",
"types": "index.d.ts",
"files": [
"index.js",
"index.d.ts",
"osmify.js",
"osmify.min.js"
],
"scripts": {
"prepublish": "npm run test && npm run build",
"test": "npm run lint && jest --coverage",
"lint": "standard",
"docs": "documentation readme index.js --section=API",
"build": "browserify index.js -s osmify > osmify.js && uglifyjs osmify.js -c -m > osmify.min.js"
},
"dependencies": {},
"devDependencies": {
"browserify": "^14.0.0",
"coveralls": "^2.11.15",
"documentation": "^4.0.0-beta.18",
"jest-cli": "^18.1.0",
"standard": "^8.6.0",
"typescript": "^2.1.5",
"uglify-js": "git://github.com/mishoo/UglifyJS2.git#harmony"
},
"repository": {
"type": "git",
"url": "git+https://github.com/osmottawa/osmify.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/osmottawa/osmify/issues"
},
"homepage": "https://github.com/osmottawa/osmify#readme",
"jest": {
"verbose": true
},
"testEnvironment": "node",
"standard": {
"env": "jest"
}
}