forked from arso-project/sonar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 795 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 795 Bytes
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
{
"name": "sonar",
"repository": {
"type": "git",
"url": "git+https://github.com/arso-project/sonar.git"
},
"scripts": {
"test": "tape packages/*/test/*.js",
"start": "node sonar start",
"dev": "node sonar start --dev --disable-authentication",
"rebuild": "run-p build:*",
"build:apidocs": "cd packages/client; npm run doc:html",
"build:ui": "cd packages/ui; npm run build",
"build:tantivy": "cd node_modules/@arso-project/sonar-tantivy; npm run postinstall",
"dev:link": "./script/dev-link.sh"
},
"workspaces": [
"*",
"bots/**",
"packages/**"
],
"license": "GPL-3.0",
"private": true,
"devDependencies": {
"npm-run-all": "^4.1.5",
"standard": "^14.3.3",
"tape": "^5.0",
"trace-console-log": "^1.0.0"
}
}