forked from osmlab/osm-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1021 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
{
"name": "osm-auth",
"version": "1.0.2",
"description": "A usable example of JavaScript OAuth with OpenStreetMap",
"main": "index.js",
"repository": "osmlab/osm-auth",
"author": "Tom MacWright <[email protected]>",
"license": "ISC",
"keywords": [
"oauth",
"openstreetmap",
"ohauth"
],
"dependencies": {
"ohauth": "~1.0.0",
"store": "~2.0.4",
"resolve-url": "~0.2.1",
"xtend": "~4.0.0"
},
"devDependencies": {
"browserify": "^14.3.0",
"ecstatic": "~2.2.0",
"eslint": "^4.1.0",
"node-localstorage": "^1.3.0",
"shx": "~0.2.0",
"tap": "^10.0.0",
"uglify-js": "^3.0.0"
},
"scripts": {
"clean": "shx rm -f osmauth.js osmauth.min.js",
"prebuild": "npm run clean",
"build": "browserify index.js -s osmAuth > osmauth.js",
"postbuild": "uglifyjs osmauth.js -c > osmauth.min.js",
"lint": "eslint index.js test/osmauth.js",
"start": "node server.js",
"test": "npm run build && npm run lint && tap --cov test/*.js"
}
}