-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1.26 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
{
"name": "dont-bounce-please",
"library": "DBP",
"version": "2.0.2",
"description": "Allows programmer-specified behavior upon detection of a likely bounce. Exposes a single method `DBP` which can take in a options object or a method to be run upon bounce.",
"scripts": {
"build": "WEBPACK_ENV=build webpack",
"dev": "WEBPACK_ENV=dev webpack --progress --colors --watch",
"test": "mocha --compilers js:babel-core/register --colors -w ./test/*.spec.js"
},
"author": "Giuseppe Burtini",
"license": "MIT",
"main": "./src/core.js",
"repository": {
"type": "git",
"url": "https://github.com/gburtini/Dont-Bounce-Please.git"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-add-module-exports": "0.1.2",
"babel-preset-es2015": "6.3.13",
"chai": "3.4.1",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^9.0.1",
"eslint-config-strawhouse": "^1.0.4",
"eslint-loader": "^1.6.1",
"eslint-plugin-import": "^1.9.2",
"eslint-plugin-jsx-a11y": "^1.5.3",
"eslint-plugin-react": "^5.2.2",
"mocha": "3.2.0",
"webpack": "4.5.0",
"webpack-cli": "^2.0.14"
},
"dependencies": {
"jquery": "^3.1.1",
"js-cookie": "^2.1.3"
}
}