forked from personality-insights/text-summary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.21 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
{
"name": "personality-text-summary",
"version": "2.2.2",
"description": "Generate Text Summary for Personality Insights Profile",
"main": "lib/index.js",
"exportName": "TextSummary",
"scripts": {
"compile": "node_modules/.bin/browserify -t [ babelify --presets [ es2015 ] ] --standalone TextSummary src/index.js -o dist/index.js",
"build": "./node_modules/.bin/babel src --presets es2015 --out-dir lib",
"prepublish": "npm run compile && npm run build",
"test": "npm run lint && npm run codecov",
"lint": "eslint .",
"autofix": "eslint . --fix",
"codecov": "istanbul cover mocha test && codecov"
},
"repository": {
"type": "git",
"url": "git@github.com:personality-insights/text-summary.git"
},
"author": "IBM Corp.",
"license": "Apache-2.0",
"keywords": [
"personality",
"personality insights",
"text",
"summary",
"ibm watson"
],
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"babel-preset-es2015": "^6.22.0",
"browserify": "^14.0.0",
"babel-cli": "^6.22.2",
"babelify": "^7.3.0",
"chai": "^3.5.0",
"codecov": "^1.0.1",
"eslint": "^3.14.1",
"istanbul": "^0.4.5",
"mocha": "^3.2.0"
}
}