-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
38 lines (38 loc) · 1.11 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
{
"name": "@mia-platform/advanced-custom-plugin-test",
"version": "1.0.0",
"description": "An advanced example for a custom plugin",
"homepage": "https://www.mia-platform.eu/",
"bugs": {
"url": "https://github.com/mia-platform/custom-plugin-lib/issues",
"email": "core@mia-platform.eu"
},
"license": "Apache-2.0",
"author": "Mia Platform Core Team <core@mia-platform.eu>",
"contributors": [
"Tommaso Allevi <tomallevi@gmail.com>",
"Luca Scannapieco <luca.scannapieco@mia-platform.eu>",
"Paolo Sarti <paolo.sarti@mia-platform.eu>",
"Jacopo Andrea Giola <jacopo@giola.org>",
"Davide Bianchi <bianchidavide12@gmail.com>"
],
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/mia-platform/custom-plugin-lib.git"
},
"scripts": {
"start": "lc39 ./index.js",
"start:local": "npm start -- --env-path ./../default.env",
"test": "tap -b tests/*.test.js"
},
"dependencies": {
"@mia-platform/custom-plugin-lib": "mia-platform/custom-plugin-lib"
},
"engines": {
"node": ">=8"
},
"devDependencies": {
"tap": "^13.1.2"
}
}