-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.45 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
71
72
73
{
"name": "@orda-io/orda-jsoneditor",
"version": "0.1.0",
"description": "Orda JSONEditor",
"scripts": {
"dev": "npx webpack serve --config=./webpack.dev.js --stats-all --profile --bail --progress",
"clean": "rimraf dist",
"test": "npx mocha --config ./mocharc.json -ui bdd ./test/**/*",
"lint": "eslint --ext .tsx,.ts --fix ./src ./test",
"prepare:assets": "npm install && cp -rf node_modules/jsoneditor/dist/jsoneditor.css node_modules/jsoneditor/dist/img/ example",
"prettier": "prettier --config .prettierrc.json --write ./src/**/*.{json,ts,tsx}",
"build:dev": "npm run clean && webpack --config=./webpack.dev.js --stats-all --profile --bail",
"build:prod": "npm run clean && webpack --config=./webpack.prod.js --stats-all --profile --bail",
"build:exam": "npm run clean && webpack --config=./webpack.dev.js -o ./example --stats-all --profile --bail",
"prepublishOnly": "npm run build:prod && npm version patch -m \"npm publish tag %s\"",
"postpublish": "git push --tags"
},
"main": "dist/orda-jsoneditor.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/orda-io/orda-jsoneditor.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"keywords": [
"typescript",
"typescript-library"
],
"author": "Orda Team",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/orda-io/orda-jsoneditor/issues"
},
"homepage": "https://github.com/orda-io/orda-jsoneditor#readme",
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/json8-patch": "^1.0.1",
"@types/jsoneditor": "^9.5.1",
"@types/mocha": "^9.1.1",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"buffer": "^6.0.3",
"chai": "^4.3.6",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"minimist": "^1.2.6",
"mocha": "^10.0.0",
"node-fetch": "^3.2.10",
"prettier": "^2.7.1",
"process": "^0.11.10",
"rimraf": "^3.0.2",
"stream-browserify": "^3.0.0",
"terser-webpack-plugin": "^5.3.3",
"ts-loader": "^9.3.1",
"ts-node": "^10.9.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3",
"webpack-merge": "^5.8.0",
"ws": "^8.8.1"
},
"dependencies": {
"@orda-io/orda": "^0.1.33",
"@orda-io/orda-logger": "^0.1.15",
"json8-patch": "^1.0.6",
"jsoneditor": "^9.9.0"
}
}