-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·70 lines (70 loc) · 2.07 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
68
69
70
{
"name": "discourse-client",
"version": "0.1.4",
"description": "Javascript client for Discourse",
"browser": "lib/discourse-client.js",
"main": "src/discourse.js",
"module": "src/discourse.js",
"scripts": {
"serve": "webpack-dev-server --color --progress",
"build": "webpack --env dev && webpack --env build --profile --json > webpack-stats.json && npm run test",
"dev": "webpack --progress --colors --watch --env dev",
"test": "jest --detectOpenHandles --no-cache",
"test:watch": "jest --watchAll",
"test:cover": "jest --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/pdavide/discourse-js.git"
},
"keywords": [
"discourse",
"discourse api",
"discourse js",
"discourse javascript",
"discourse client"
],
"author": "Davide Porrovecchio",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/pdavide/discourse-js/issues"
},
"files": [
"lib/*.js"
],
"homepage": "https://github.com/pdavide/discourse-js",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-throw-expressions": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-modules-commonjs": "^7.8.3",
"@babel/polyfill": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/register": "^7.8.3",
"@ungap/url-search-params": "^0.1.4",
"axios": "^0.19.2",
"axios-extensions": "^3.1.1",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^8.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-dynamic-import-node": "^2.3.0",
"babel-plugin-istanbul": "^5.2.0",
"eslint": "^5.16.0",
"eslint-loader": "^2.2.1",
"jest": "^24.9.0",
"jest-localstorage-mock": "^2.3.0",
"jest-mock-axios": "^2.4.0",
"jsencrypt": "^3.0.0-rc.1",
"mobile-detect": "^1.4.4",
"node-forge": "^0.7.6",
"promise-window": "^1.2.1",
"webpack": "4.28.4",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"yargs": "^15.1.0"
},
"dependencies": {
"core-js": "^3.6.4"
}
}