-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
84 lines (84 loc) · 2.55 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
74
75
76
77
78
79
80
81
82
83
84
{
"name": "ra-data-feathers",
"version": "2.9.4",
"description": "A feathers client for react-admin",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"pretest": "npm run build",
"test": "npm run coverage && npm run test:type",
"test:type": "tsd",
"build": "cross-env NODE_ENV=production ./node_modules/.bin/babel ./src -d lib --ignore '*.spec.js' && tsc",
"build:types": "tsc",
"clean": "shx rm -rf lib",
"prepublish": "cross-env NODE_ENV=production ./node_modules/.bin/babel ./src -d lib --ignore '*.spec.js' && tsc",
"publish": "git push origin --tags && npm run changelog && git push origin",
"changelog": "github_changelog_generator -u josx -p ra-data-feathers && git add CHANGELOG.md && git commit -am \"Updating changelog\"",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"coverage": "nyc node_modules/mocha/bin/_mocha -- --require babel-register",
"mocha": "cross-env DEBUG=ra-data-feathers:* mocha --require babel-register"
},
"files": [
"LICENSE",
"*.md",
"lib",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/josx/ra-data-feathers.git"
},
"keywords": [
"reactjs",
"react",
"rest",
"feathers",
"local",
"react-admin"
],
"author": "Jose Luis Di Biase",
"license": "MIT",
"bugs": {
"url": "https://github.com/josx/ra-data-feathers/issues"
},
"homepage": "https://github.com/josx/ra-data-feathers#readme",
"peerDependencies": {
"@feathersjs/client": "^3.5.3 || ^4.3.0",
"react-admin": "^2.1.1|| ^3.0.0|| ^4.0.0"
},
"dependencies": {
"debug": "^3.0.0",
"jwt-decode": "^2.2.0",
"object-diff": "^0.0.4"
},
"devDependencies": {
"all-contributors-cli": "^6.16.1",
"babel-cli": "^6.18.0",
"babel-eslint": "^10.0.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.26.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"cross-env": "^7.0.3",
"eslint": "^5.7.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"mocha": "^8.4.0",
"nyc": "^15.1.0",
"react": "^16.4.1",
"react-admin": "^4.7.2",
"react-dom": "^16.4.1",
"shx": "^0.3.3",
"sinon": "^11.1.1",
"tsd": "^0.17.0",
"typescript": "^4.3.2"
},
"tsd": {
"directory": "test"
}
}