-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.31 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
{
"name": "@openplains/grass-js-client",
"version": "1.0.0-alpha.4",
"repository": {
"type": "git",
"url": "https://github.com/tomorrownow/grass-js-client.git"
},
"homepage": "https://tomorrownow.github.io/grass-js-client/",
"bugs": {
"url": "https://github.com/tomorrownow/grass-js-client/issues"
},
"license": "GPLv3",
"source": "src/index.js",
"main": "dist/main.js",
"module": "dist/module.js",
"proxy": "http://localhost:8005",
"isLibrary": true,
"outputFormat": "esmodule",
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"babel-jest": "^28.1.3",
"jest": "^28.1.3",
"parcel": "~2.7.0",
"@parcel/config-default": "~2.7.0",
"@parcel/transformer-js": "~2.7.0",
"release-it": "^15.0.0",
"jsdoc": "^3.6.11",
"docdash": "^1.2.0",
"eslint": "^8.23.1",
"prettier": "^2.7.1"
},
"scripts": {
"watch": "parcel watch",
"build": "parcel build",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"lint": "eslint . && prettier \"./src/**/*.{js,json,md}\" --list-different",
"release": "release-it",
"docs": "./node_modules/.bin/jsdoc -c jsdoc.json"
}
}