-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.82 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
59
60
61
62
63
64
65
66
67
{
"name": "bookmarklet_manager",
"version": "1.2.0",
"description": "Create and edit bookmarklets in the browser",
"main": "background.js",
"scripts": {
"prebuild": "npm run bump-version",
"build": "cross-env NODE_ENV=production webpack -p",
"postbuild": "npm pack && tar2zip *.tgz && rm -f *.tgz && mv *.zip builds/",
"bump-version": "standard-version",
"postbump-version": "node scripts/version.js && git add manifest.json && git commit --amend --no-edit",
"eslint": "eslint . --ext .jsx --ext .js",
"start": "webpack-dev-server --inline",
"test": "npm run eslint"
},
"keywords": [],
"author": "arkvim <[email protected]>",
"license": "MIT",
"files": [
"dist/*",
"*.js",
"*.json",
"*.png"
],
"dependencies": {
"material-ui": "^0.17.1",
"react-flexbox-grid": "^1.0.2",
"safe-eval": "^0.3.0"
},
"devDependencies": {
"babel-core": "^6.23.1",
"babel-loader": "^6.4.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"classnames": "^2.2.5",
"codemirror": "^5.24.2",
"cross-env": "^3.2.3",
"css-loader": "^0.27.1",
"eslint": "^3.19.0",
"eslint-config-google": "^0.7.1",
"eslint-plugin-react": "^6.10.3",
"html-webpack-plugin": "^2.28.0",
"js-beautify": "^1.6.11",
"json-update": "^3.0.0",
"less": "^2.7.2",
"less-loader": "^3.0.0",
"normalize.css": "^5.0.0",
"react": "^15.4.2",
"react-codemirror": "^0.3.0",
"react-dom": "^15.4.2",
"standard-version": "^8.0.1",
"style-loader": "^0.13.2",
"tar-to-zip": "^1.3.0",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.1"
},
"babel": {
"plugins": [
"transform-object-rest-spread"
],
"presets": [
"es2015",
"react"
]
}
}