-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
44 lines (44 loc) · 1.36 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
{
"name": "phrase-api-reference",
"version": "2.0.0",
"description": "Phrase Strings is a translation management platform for software projects. You can collaborate on language file translation with your team or order translations through our platform.",
"scripts": {
"start": "make",
"docs": "make docs",
"watch": "make watch_bundle watch_scss watch_ts serve -j4",
"bundle": "make lint bundle",
"lint": "make lint",
"generate.ruby": "make lint bundle ruby",
"generate.go": "make lint bundle go",
"generate.typescript": "make lint bundle typescript",
"generate.python": "make lint bundle python",
"generate.java": "make lint bundle java",
"generate.php": "make lint bundle php",
"generate.cli": "make lint bundle cli"
},
"repository": {
"type": "git",
"url": "git+https://github.com/phrase/openapi.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/phrase/openapi/issues"
},
"homepage": "https://developers.phrase.com/api/",
"devDependencies": {
"@apidevtools/swagger-cli": "^4.0.4",
"@openapitools/openapi-generator-cli": "^2.13.5",
"http-server": "^0.12.3",
"husky": "^8.0.3",
"release-please": "^15.10.5",
"sass": "^1.26.10",
"terser": "^4.8.1",
"typescript": "^3.9.6"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}