-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 924 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 924 Bytes
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
{
"name": "node-techcrunch",
"version": "0.2.2",
"description": "A simple API for accessing techcrunch news",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"compile:es6": "babel --watch src --out-dir dist --source-maps inline",
"jshint": "jshint --verbose .",
"build": "watch 'npm run jshint' src & npm run compile:es6"
},
"author": "Sachin Bansal <sachinbansal94@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/sachinb94/node-techcrunch.git"
},
"bugs": {
"url": "https://github.com/sachinb94/node-techcrunch/issues"
},
"keywords": [
"techcrunch",
"node-techcrunch",
"crunch",
"crunchbase"
],
"license": "MIT",
"dependencies": {
"x-ray": "^2.0.1"
},
"devDependencies": {
"jshint": "^2.8.0",
"watch": "^0.16.0"
},
"jshintConfig": {
"esnext": true
}
}