-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 1.7 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "web-s",
"version": "1.0.1",
"description": "Websearch CLI",
"main": "./index.js",
"scripts": {
"prepublish": "npm run build",
"build": "gulp build",
"watch": "gulp watch",
"unit": "mocha --compilers js:babel-core/register --colors ./test/*.spec.js",
"unit-watch": "mocha --compilers js:babel-core/register --colors -w ./test/*.spec.js",
"test": "npm run unit-watch"
},
"repository": {
"type": "git",
"url": "git@github.com:mstruebing/web-s.git"
},
"keywords": [
"es6",
"npm",
"websearch",
"cli",
"google",
"twitter",
"reddit"
],
"author": {
"name": "Max Strübing",
"url": "https://github.com/mstruebing"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mstruebing/web-s/issues"
},
"files": [
"LICENSE",
"README.md",
"index.js",
"lib",
"bin"
],
"homepage": "https://github.com/mstruebing/web-s",
"devDependencies": {
"babel": "^6.3.26",
"babel-core": "^6.4.0",
"babel-eslint": "^5.0.0-beta6",
"babel-loader": "^6.2.1",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-preset-es2015": "^6.3.13",
"chai": "^3.4.1",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^4.0.0",
"eslint-loader": "^1.2.0",
"eslint-plugin-react": "^3.16.1",
"gulp": "^3.9.0",
"gulp-babel": "^6.1.1",
"gulp-concat": "^2.6.0",
"gulp-env": "^0.2.0",
"gulp-eslint": "^1.1.1",
"gulp-load-plugins": "^1.2.0",
"gulp-sourcemaps": "^1.6.0",
"gulp-util": "^3.0.6",
"mocha": "^2.3.4"
},
"library": {
"name": "library",
"entry": "./index.js"
},
"bin": {
"web-s": "./bin/library.js"
},
"dependencies": {
"open": "0.0.5"
}
}