forked from kevinsqi/save_tabbed_images
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 957 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 957 Bytes
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
{
"name": "tab2image",
"private": true,
"description": "tab2image Chrome Extension",
"scripts": {
"build": "cross-env NODE_ENV=production webpack -p",
"clean": "rm -f ./dist/js/* package.zip",
"lint": "eslint --ext .js,.jsx src test",
"package": "npm run clean && npm run build && zip -r package.zip ./dist",
"watch": "cross-env NODE_ENV=development webpack --watch"
},
"dependencies": {
"dateformat": "^1.0.12",
"pluralize": "~1.2.0",
"react": "~15.0.0",
"react-addons-update": "^15.0.1",
"react-dom": "~15.0.0",
"underscore": "~1.8.3"
},
"devDependencies": {
"babel-core": "^6.3.15",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^2.0.0",
"eslint-friendly-formatter": "^1.2.2",
"eslint-plugin-react": "^3.11.3",
"cross-env": "^7.0.3",
"webpack": "^1.12.9"
}
}