-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.18 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
{
"name": "kumo",
"version": "1.0.0",
"description": "Tropy Web Services",
"private": true,
"scripts": {
"clean": "shx rm -rf lib .aws-sam",
"prebuild": "npm run clean",
"build": "rollup -c",
"lint": "eslint src test",
"start": "sam local start-api",
"test": "mocha test/**/*_test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tropy/kumo.git"
},
"keywords": [
"tropy",
"serverless"
],
"license": "AGPL-3.0",
"homepage": "https://github.com/tropy/kumo#readme",
"bugs": {
"url": "https://github.com/tropy/kumo/issues"
},
"devDependencies": {
"@babel/preset-env": "^7.14.1",
"@babel/register": "^7.13.16",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"chai": "^4.3.4",
"eslint": "^8.18.0",
"mocha": "^10.0.0",
"rollup": "^2.75.7",
"shx": "^0.3.3",
"sinon": "^14.0.0"
},
"browserslist": [
"node 14"
],
"mocha": {
"require": [
"test/support/babel.js",
"test/support/globals.js"
]
},
"dependencies": {
"semver": "^7.3.5"
}
}