-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.21 KB
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
{
"name": "discourse-js",
"version": "3.0.12",
"description": "A client-side javascript wrapper for the discourse API.",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"homepage": "https://github.com/workshoptech/discourse-js",
"bugs": {
"url": "https://github.com/workshoptech/discourse-js/issues"
},
"scripts": {
"build": "rollup -c",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier-eslint --eslint-config-path \".eslintrc.json\" --config \".prettierrc.js\" $PWD/\"src/**/*.js\"",
"format:write": "prettier-eslint --write --eslint-config-path \".eslintrc.json\" --config \".prettierrc.js\" $PWD/\"src/**/*.js\"",
"prepare": "yarn run build",
"version": "git add -A src",
"postversion": "git push && git push --tags && yarn publish . --tag $npm_package_version && git push && echo \"Successfully released version $npm_package_version!\""
},
"author": "Workshop",
"contributors": [
"Karl Taylor <karl_taylor@me.com>",
"Dan Williams <dan@workshop.ws> (https://workshop.ws/)",
"Josh Taylor <josh@workshop.ws> (https://workshop.ws/)"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com:workshoptech/discourse-js.git"
},
"keywords": [
"discourse",
"discourse-js",
"discoursejs",
"javascript"
],
"dependencies": {
"@types/humps": "^2.0.0",
"humps": "^2.0.1"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.8.7",
"@rollup/plugin-babel": "^5.2.0",
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"babel-eslint": "^10.0.3",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"prettier": "1.19.1",
"prettier-eslint": "^9.0.1",
"prettier-eslint-cli": "^5.0.0",
"rollup": "^2.26.5",
"rollup-plugin-typescript2": "^0.27.3",
"typescript": "^4.0.3"
}
}