-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 2.01 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
{
"name": "fluid-adaptive-content-service",
"version": "1.0.0",
"description": "A service to make it easier for other applications to make use other third-party services like, dictionary look-up, translation, etc. The application is in the form of a REST-like API.",
"main": "index.js",
"scripts": {
"start": "node ./v1/server.js",
"test": "node ./share/all-tests.js",
"test-contract": "node ./share/all-contract-tests.js",
"test-dictionary-contract": "node ./share/dictionary/tests/dictionary-contract-tests.js",
"test-nlp-contract": "node ./share/nlp/tests/nlp-contract-tests.js",
"test-translation-contract": "node ./share/translation/tests/translation-contract-tests.js",
"test-dictionary": "node ./share/dictionary/tests/dictionary-all-tests.js",
"test-nlp": "node ./share/nlp/tests/nlp-all-tests.js",
"test-translation": "node ./share/translation/tests/translation-all-tests.js",
"dictionary": "node ./v1/dictionary/server.js",
"nlp": "node ./v1/nlp/server.js",
"translation": "node ./v1/translation/server.js",
"travis": "grunt && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fluid-lab/fluid-adaptive-content-service.git"
},
"author": "Fluid Project",
"license": "(BSD-3-Clause OR ECL-2.0)",
"bugs": {
"url": "https://github.com/fluid-lab/fluid-adaptive-content-service/issues"
},
"homepage": "https://github.com/fluid-lab/fluid-adaptive-content-service#readme",
"dependencies": {
"ajv": "^6.5.1",
"ajv-merge-patch": "^4.1.0",
"cheerio": "^1.0.0-rc.2",
"compromise": "^11.9.1",
"dotenv": "^5.0.1",
"google-translate": "^2.2.0",
"infusion": "3.0.0-dev.20171117T095227Z.67ff934",
"kettle": "1.7.1",
"nock": "^9.3.3",
"node-jqunit": "^1.1.8",
"request": "^2.87.0",
"word-definition": "^2.1.6"
},
"devDependencies": {
"eslint-config-fluid": "^1.3.0",
"fluid-grunt-eslint": "^18.1.2",
"grunt": "^1.0.2",
"grunt-eslint": "^20.1.0",
"grunt-jsonlint": "^1.1.0"
}
}