-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.26 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
60
61
62
63
64
{
"name": "suttacentral-api",
"version": "2.15.1",
"description": "SuttaCentral API cached proxy",
"main": "index.js",
"directories": {
"test": "test"
},
"dependencies": {
"log-instance": "^1.5.0",
"memo-again": "^0.10.0",
"merkle-json": "^1.1.4"
},
"devDependencies": {
"mocha": "^10.2.0",
"should": "^11.2.0"
},
"scripts": {
"build": "scripts/build",
"test": "npm run test:verbose",
"test:test": "mocha -w --watch-ignore node_modules,.git,local -R min --inline-diffs -g TEST",
"test:verbose": "mocha --inline-diffs",
"test:watch": "mocha -w --inline-diffs"
},
"repository": {
"tag": "git"
},
"bin": {},
"keywords": [
"SuttaCentral",
"translation",
"Javascript",
"Voice"
],
"author": "Karl Lew",
"homepage": "https://github.com/sc-voice/sc-api",
"license": "MIT",
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {
"no-console": "off"
},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}