-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 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
{
"name": "trackpin-node",
"version": "1.0.2",
"description": "TrackPin Garage door information scraper",
"main": "./dist/index.js",
"scripts": {
"start": "node ./dist/index.js",
"test": "npm run lint",
"develop": "nodemon lib/index.js --exec babel-node",
"build": "babel lib -d dist",
"prepublish": "npm run build",
"lint": "standard",
"preversion": "npm run lint",
"version": "npm run build",
"postversion": "git push && git push --tags",
"dev": "chokidar './lib/**/*.js' -c 'npm run build'"
},
"repository": {
"type": "git",
"url": "git://github.com/wurmr/trackpin-node.git"
},
"author": "Jim Karg",
"license": "MIT",
"dependencies": {
"cheerio": "^0.22.0",
"request": "^2.79.0",
"request-promise-native": "^1.0.3"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-preset-env": "^1.1.8",
"chokidar-cli": "^1.2.0",
"nodemon": "^1.11.0",
"pre-commit": "^1.2.2",
"standard": "^8.6.0"
},
"pre-commit": [
"lint"
]
}