-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 2.04 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
65
66
67
{
"name": "@hltcoe/concrete",
"version": "4.18.4-dev.0",
"description": "Node.js library for working with Concrete, a data serialization format for NLP",
"main": "concrete.js",
"types": "concrete.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/hltcoe/concrete-js.git"
},
"keywords": [
"NLP",
"HLT"
],
"author": "",
"license": "SEE LICENSE IN LICENSE.txt",
"bugs": {
"url": "https://github.com/hltcoe/concrete-js/issues"
},
"homepage": "https://github.com/hltcoe/concrete-js/blob/main/README-nodejs.md",
"dependencies": {
"adm-zip": "^0.5.10",
"jsesc": "^3.0.2",
"lodash": "^4.17.21",
"thrift": "^0.19.0",
"uuid": "^9.0.0",
"yargs": "^17.6.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"chai": "^4.3.7",
"docdash": "^1.1.0",
"eslint": "^8.49.0",
"genversion": "^3.1.1",
"grunt": "^1.0.4",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-jshint": "^2.1.0",
"grunt-contrib-uglify": "^4.0.1",
"grunt-eslint": "^24.3.0",
"grunt-jsdoc": "^2.3.1",
"grunt-shell": "^3.0.1",
"is-docker": "^1.1.0",
"jasmine-core": "^3.4.0",
"karma": "^4.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^2.0.1",
"karma-jasmine-jquery": "^0.1.1",
"karma-safari-launcher": "^1.0.0",
"karma-spec-reporter": "^0.0.32",
"mocha": "^10.2.0",
"typescript": "^5.2.2"
},
"scripts": {
"test_js": "karma start --single-run --browsers ChromeCustom --reporters spec",
"test_nodejs": "mocha test_nodejs",
"integration_test_nodejs": "bash integration_test_nodejs/test_convert_bpjson.bash",
"test": "npm run test_js && npm run test_nodejs",
"integration_test": "npm run integration_test_nodejs"
},
"bin": {
"concrete-convert-bpjson-server": "./convert-bpjson-server.js",
"concrete-convert-bpjson-client": "./convert-bpjson-client.js",
"concrete-convert-client": "./convert-client.js"
}
}