-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
57 lines (57 loc) · 1.52 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
{
"name": "bv-ui-core",
"version": "2.9.4",
"license": "Apache 2.0",
"description": "Bazaarvoice UI-related JavaScript",
"repository": {
"type": "git",
"url": "git://github.com/bazaarvoice/bv-ui-core"
},
"engines": {
"node": ">=10.*"
},
"scripts": {
"lint": "eslint karma.conf.js lib test",
"test": "./node_modules/karma/bin/karma start --single-run --browsers ChromeHeadless",
"dev": "./node_modules/karma/bin/karma start --browsers Chrome"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^6.4.1",
"babel-plugin-lodash": "^3.3.4",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^3.5.0",
"eslint": "2.2.0",
"ghooks": "1.0.3",
"istanbul-instrumenter-loader": "0.2.0",
"json-loader": "^0.5.7",
"karma": "^3.0.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.2",
"karma-firefox-launcher": "^1.1.0",
"karma-htmlfile-reporter": "^0.3.6",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sinon": "^1.0.5",
"karma-sinon-chai": "^1.3.4",
"karma-webpack": "^1.7.0",
"lodash": "^4.17.10",
"mocha": "^5.2.0",
"node-libs-browser": "1.0.0",
"phantomjs": "^2.1.7",
"sinon": "^4.5.0",
"sinon-chai": "^2.14.0",
"webpack": "^1.15.0"
},
"config": {
"ghooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run lint && npm test"
}
},
"dependencies": {
"whatwg-fetch": "^2.0.3"
}
}