forked from lyft/lyft-web-button
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.56 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
{
"name": "lyft-web-button",
"version": "2.0.0",
"description": "Lyft Web SDK",
"license": "Apache-2.0",
"private": true,
"author": "Jordan Patton <[email protected]>",
"contributors": [
"Andrew Martin <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/lyft/lyft-web-button.git"
},
"scripts": {
"build": "webpack --progress --colors",
"build:dev": "NODE_ENV=development webpack --progress --colors",
"watch": "NODE_ENV=development webpack --progress --colors --watch",
"build:dist": "NODE_ENV=production webpack --progress --colors",
"doc": "node doc/index.js",
"lint": "eslint doc/ src/ test/",
"start": "webpack-dev-server --content-base dist/",
"test": "karma start"
},
"dependencies": {},
"devDependencies": {
"babel": "^6.23.0",
"babel-core": "^6.25.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^7.0.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"css-loader": "^0.28.4",
"docdown": "^0.7.2",
"eslint": "^3.11.1",
"eslint-config-airbnb-es5": "^1.1.0",
"eslint-plugin-react": "^7.0.1",
"expect": "^1.20.2",
"html-loader": "^0.4.4",
"karma": "^1.3.0",
"karma-mocha": "^1.2.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-webpack": "^2.0.3",
"mocha": "^3.1.2",
"path": "^0.12.7",
"qs": "^6.4.0",
"rewire": "^2.5.2",
"rewire-webpack": "^1.0.1",
"style-loader": "^0.18.2",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.4.5"
},
"engines": {
"node": ">=4.0.0"
}
}