-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.14 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
{
"name": "ra-data-mixer",
"version": "0.6.0",
"description": "React Admin DataProvider Mixer",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rm -Rf dist",
"prebuild": "npm run clean",
"build": "tsc",
"build:watch": "tsc --watch",
"test": "mocha test/**/*.test.ts",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/ckoliber/ra-data-mixer.git"
},
"keywords": [
"ra",
"react",
"admin",
"react-admin",
"dataprovider",
"mixer"
],
"author": "KoLiBer",
"license": "MIT",
"files": [
"README.md",
"dist"
],
"bugs": {
"url": "https://github.com/ckoliber/ra-data-mixer/issues"
},
"homepage": "https://github.com/ckoliber/ra-data-mixer#readme",
"peerDependencies": {
"ra-core": "^3.12.4"
},
"devDependencies": {
"@types/mocha": "^8.2.1",
"mocha": "^8.3.0",
"ra-core": "^3.12.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.5"
}
}