-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.54 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
{
"name": "search-engine-app",
"version": "1.0.0",
"description": "A webpage like Google to search links",
"main": "src/app.js",
"scripts": {
"build": "webpack --config webpack.config.js",
"start": "webpack-dev-server",
"test": "./node_modules/.bin/mocha tests/**/*.spec.js --require babel-register",
"test:tdd": "./node_modules/.bin/mocha tests/**/*.spec.js --require babel-register --watch",
"test:coverage": "nyc npm test",
"coveralls": "npm run test:coverage && nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gabriel-hahn/search-engine-app.git"
},
"keywords": [
"search-engine",
"search",
"engine"
],
"author": "Gabriel Hahn Schaeffer <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gabriel-hahn/search-engine-app/issues"
},
"nyc": {
"reporter": [
"text",
"html"
],
"exclude": [
"tests/**"
]
},
"homepage": "https://github.com/gabriel-hahn/search-engine-app#readme",
"devDependencies": {
"babel-cli": "6.24.1",
"babel-loader": "7.0.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "1.3.2",
"babel-register": "6.24.0",
"chai": "^4.2.0",
"coveralls": "2.13.0",
"husky": "0.11.9",
"jsdom": "9.4.1",
"mocha": "^5.2.0",
"nyc": "10.2.0",
"sinon": "7.2.3",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.9"
},
"dependencies": {
"masonry-layout": "^4.2.2"
}
}