-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
84 lines (84 loc) · 1.91 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
76
77
78
79
80
81
82
83
84
{
"name": "cerebro-npm",
"version": "0.2.2",
"description": "A Cerebro plugin for searching NPM packages",
"license": "MIT",
"repository": "jordanadams/cerebro-npm",
"author": {
"name": "Jordan Adams",
"email": "hi@jordanadams.co.uk",
"url": "http://github.com/jordanadams"
},
"engines": {
"node": ">=6"
},
"scripts": {
"build": "webpack && babili dist -d dist --compact --no-comments",
"debug": "./scripts/debug",
"debug:windows": "scripts\\debug.bat",
"prepublish": "rimraf ./dist && npm run build",
"lint": "xo",
"test": "mocha --require ./test/utils/init.js"
},
"pre-commit": [
"lint"
],
"main": "dist/index.js",
"keywords": [
"cerebro",
"cerebro-plugin",
"npm",
"package manager"
],
"dependencies": {
"cerebro-tools": "^0.1.0",
"p-debounce": "^1.0.0",
"request": "^2.81.0",
"request-promise-native": "^1.0.3"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-loader": "^6.2.8",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-react-jsx": "^6.8.0",
"babel-register": "^6.23.0",
"babili": "0.0.9",
"chai": "^3.5.0",
"css-loader": "^0.26.0",
"dirty-chai": "^1.2.2",
"json-loader": "^0.5.4",
"mocha": "^3.2.0",
"pre-commit": "^1.2.2",
"proxyquire": "^1.7.11",
"react": "^15.4.1",
"request-promise-native": "^1.0.3",
"require-hacker": "^2.1.4",
"rimraf": "^2.6.1",
"sinon": "^1.17.7",
"sinon-chai": "^2.8.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "2.1.0-beta.27",
"xo": "^0.17.1"
},
"xo": {
"space": 2,
"envs": [
"node",
"mocha"
],
"rules": {
"object-curly-spacing": [
"error",
"always"
],
"no-unused-vars": [
"error",
{
"ignoreRestSiblings": true,
"varsIgnorePattern": "$_*^"
}
]
}
}
}