-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.11 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.11 KB
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
{
"name": "@quantleaf/query-web-interface",
"version": "1.0.0",
"description": "Code similarity",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"test": "mocha -r ts-node/register 'test/**/*.ts'",
"build-publish": "npm run prepare-publish && npm publish dist",
"prepare-publish": "rimraf dist && tsc && ncp package.json dist/package.json",
"patch-publish": "npm update && git add . && git commit -m \"Update dependencies\" && git push origin master && npm version patch && npm run build-publish"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"repository": {
"type": "git",
"url": "git://github.com/quantleaf/code-node.git"
},
"author": "quantleaf",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"@types/node": "^8.10.66",
"chai": "^4.3.0",
"mocha": "^8.2.1",
"ncp": "^2.0.0",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"typescript": "^3.9.7"
},
"dependencies": {
"@quantleaf/code-language": "^1.0.27",
"@quantleaf/query-request": "^1.0.22"
}
}