forked from sthadka/github-chrome-fullname
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.53 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
{
"name": "github-chrome-fullname",
"version": "0.5.0",
"description": "Full name instead of UserId for SAP GitHub",
"main": "build/index.bundle.js",
"repository": {
"type": "git",
"url": "https://github.com/cgrail/github-chrome-fullname.git"
},
"scripts": {
"start": "npm run build -- --watch",
"build": "webpack --config webpack.config.js",
"test": "npm run build && npm run lint && npm run mocha",
"mocha": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' mocha --require ts-node/register test/*.ts",
"clean": "rm -rf build",
"flow": "flow",
"lint": "eslint --ext ts src",
"prepublish": "npm run clean && npm run test && npm run build"
},
"author": "Christian Grail",
"bugs": {
"url": "https://github.com/cgrail/github-chrome-fullname/issues"
},
"homepage": "https://github.com/cgrail/github-chrome-fullname",
"devDependencies": {
"@types/jsdom": "^12.2.3",
"@types/mocha": "^5.2.6",
"@types/node": "^11.13.8",
"@typescript-eslint/eslint-plugin": "^1.7.0",
"@typescript-eslint/parser": "^1.7.0",
"assert": "^1.4.1",
"copy-webpack-plugin": "^4.5.2",
"eslint": "^5.16.0",
"flow-bin": "^0.76.0",
"fs-promise": "^2.0.3",
"jsdom": "^15.0.0",
"mocha": "^5.2.0",
"sinon": "^7.3.2",
"ts-loader": "^5.4.5",
"ts-node": "^8.1.0",
"typescript": "^3.4.5",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"babel-register": "^6.26.0",
"isomorphic-fetch": "^2.2.1"
}
}