-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
61 lines (61 loc) · 1.72 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
{
"name": "omnibear",
"version": "1.2.0",
"description": "A micropub Chrome extension",
"main": "dist/index.html",
"scripts": {
"test": "mocha-webpack --webpack-config webpack.test.js \"src/**/*.test.js\"",
"start": "webpack --config webpack.dev.js --watch",
"build": "webpack --config webpack.prod.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/keithjgrant/omnibear.git"
},
"keywords": [
"micropub"
],
"author": "Keith J. Grant",
"license": "MIT",
"bugs": {
"url": "https://github.com/keithjgrant/omnibear/issues"
},
"homepage": "https://omnibear.com",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"copy-webpack-plugin": "^4.5.2",
"eslint": "^5.4.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"fetch-mock": "^6.5.2",
"form-data": "^2.1.2",
"jsdom": "^16.5.0",
"mocha": "^5.2.0",
"mocha-webpack": "^2.0.0-beta.0",
"sinon": "^6.1.5",
"uglifyjs-webpack-plugin": "^1.3.0",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0",
"webpack-merge": "^4.1.4",
"webpack-node-externals": "^1.7.2",
"webpack-stream": "^5.1.1"
},
"dependencies": {
"microformat-shiv": "^2.0.3",
"micropub-helper": "1.6.2",
"mobx": "^5.0.4",
"mobx-preact": "^3.0.0",
"parse-uri": "^1.0.0",
"preact": "^8.3.0"
}
}