-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
66 lines (66 loc) · 2.15 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
{
"name": "react-object-table",
"version": "0.7.1",
"description": "React powered table of objects, designed to be editable and fast.",
"main": "dist/index.js",
"module": "dist/index.js",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.js"
}
},
"scripts": {
"publish-demo": "git branch -D gh-pages; git push origin --delete gh-pages; git checkout -b gh-pages; cd demo-site; yarn; npm run build; cd ..; git add .; git add -f demo-site/dist; git add -f demo-site/node_modules/uptick-demo-site/dist; git commit -m \"Demo site build\"; git push origin gh-pages; git checkout master; git push origin `git subtree split --prefix demo-site gh-pages`:gh-pages --force;",
"test": "echo \"Error: no test specified\" && exit 1",
"build-js": "rm -rf dist && node ./esbuild.js",
"build-css": "./node_modules/node-sass/bin/node-sass src/object-table.sass dist/react-object-table.css",
"build": "npm run build-js; npm run build-css",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/uptick/react-object-table.git"
},
"keywords": [
"react",
"object",
"grid",
"table",
"editable"
],
"author": "Uptick Pty Ltd",
"license": "MIT",
"bugs": {
"url": "https://github.com/uptick/react-object-table/issues"
},
"homepage": "https://github.com/uptick/react-object-table#readme",
"dependencies": {
"classnames": "^2.3.1",
"clone": "^2.1.2"
},
"peerDependencies": {
"jquery": "^3.x",
"react": "15.x - 16.x",
"react-dom": "15.x - 16.x"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"esbuild": "^0.12.5",
"esbuild-node-externals": "^1.2.0",
"eslint": "^7.27.0",
"eslint-config-standard": "*",
"eslint-config-standard-react": "*",
"eslint-plugin-import": "*",
"eslint-plugin-node": "*",
"eslint-plugin-promise": "*",
"eslint-plugin-react": "*",
"eslint-plugin-standard": "*",
"jquery": "^3.6.0",
"node-sass": "^6.0.0",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"typescript": "^4.3.2"
}
}