-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.78 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
48
49
50
51
52
53
{
"name": "google-places-js",
"description": "Simple API client for Google Places.",
"version": "0.1.1",
"main": "build/index.js",
"repository": {
"type": "git",
"url": "https://github.com/nathanmarks/google-places-js.git"
},
"scripts": {
"init": "rimraf .validate.json && rimraf .jshintrc",
"clean": "rimraf build",
"lint": "eslint source && eslint test",
"prebuild": "npm run clean",
"build": "babel --plugins object-assign -d build source",
"test": "babel-node test/index.js",
"cov": "npm run cov:clean && npm run cov:generate",
"cov:clean": "rimraf coverage",
"cov:generate": "babel-node node_modules/.bin/isparta cover --report text --report html test/index.js",
"prepublish": "npm run build",
"validate": "npm run lint && npm run build && npm test",
"validate-dev": "npm run lint && npm run build && npm test | faucet",
"audit": "nsp package",
"missing": "dependency-check package.json",
"extra": "dependency-check package.json --extra --ignore",
"ok": "echo 'OK if the dependencies above are all devDependencies.' && echo 'Clean up any unused dependencies.'",
"deps": "npm run missing && npm run extra && npm run ok",
"precheck": "npm run validate",
"check": "npm run audit && npm run deps && npm outdated --depth 0"
},
"pre-commit": [
"check"
],
"dependencies": {
"babel-core": "^5.8.19",
"babel-plugin-object-assign": "^1.2.1",
"bluebird": "^2.9.30",
"i": "^0.3.3",
"lodash": "^3.9.3",
"request-promise": "^0.4.3"
},
"devDependencies": {
"babel": "^5.8.19",
"babel-eslint": "^3.1.9",
"dependency-check": "^2.4.0",
"eslint": "^0.22.1",
"faucet": "0.0.1",
"nsp": "^1.0.1",
"precommit-hook": "^2.0.1",
"rimraf": "^2.4.3",
"tape": "^4.0.0"
}
}