-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.25 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
{
"name": "feathers-python",
"version": "0.8.0",
"description": "Node.js for creating Feathers.js Backend Services based on Python Scripts",
"main": "lib/index.js",
"scripts": {
"test": "mocha",
"lint": "eslint .",
"all": "run-s lint test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pinussilvestrus/feathers-python.git"
},
"keywords": [
"feathersjs",
"python",
"nodejs"
],
"author": {
"name": "Niklas Kiefer",
"url": "https://github.com/pinussilvestrus"
},
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/pinussilvestrus/feathers-python/issues"
},
"homepage": "https://github.com/pinussilvestrus/feathers-python#readme",
"dependencies": {
"@feathersjs/feathers": "^5.0.11",
"child-process-promise": "^2.2.1"
},
"devDependencies": {
"@babel/core": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"chai": "^4.3.10",
"chai-http": "^4.4.0",
"eslint": "^8.54.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"winston": "^3.11.0"
}
}