-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
59 lines (59 loc) · 1.64 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
{
"name": "farmos",
"version": "2.0.0-beta.16",
"description": "A JavaScript library for working with farmOS data structures and interacting with farmOS servers.",
"main": "dist/cjs/farmOS.js",
"module": "dist/esm/farmOS.js",
"browser": "dist/umd/farmOS.js",
"files": [
"dist/**"
],
"scripts": {
"test": "mocha --recursive",
"pretest": "npm run build",
"lint": "eslint --color --ext .js .",
"tsc": "tsc",
"build": "rm -rf dist/ && rollup -c",
"prepare": "npm run build",
"update-core-schemata": "node core_schemata/update-script.js",
"build-api-ref": "echo '# API Reference\n' > docs/api.md && jsdoc2md -c jsdoc.conf.json . >> docs/api.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/farmOS/farmOS.js.git"
},
"keywords": [
"agriculture"
],
"author": "farmOS team",
"license": "MIT",
"bugs": {
"url": "https://github.com/farmOS/farmOS.js/issues"
},
"homepage": "https://github.com/farmOS/farmOS.js#readme",
"dependencies": {
"axios": "^0.25.0",
"ramda": "^0.27.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-string": "^1.5.0",
"dotenv": "^16.0.3",
"eslint": "^8.54.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.0",
"jsdoc-to-markdown": "^7.1.0",
"jsdoc-tsimport-plugin": "^1.0.5",
"mocha": "^9.1.3",
"rollup": "^2.61.1",
"typescript": "^4.4.3"
},
"engines": {
"node": ">=13.2.0"
}
}