-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
52 lines (52 loc) · 1.54 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": "personality-trait-descriptions",
"version": "2.1.0",
"description": "Obtain descriptions for IBM Watson Personality Insights traits",
"main": "lib/index.js",
"scripts": {
"compile": "./node_modules/.bin/browserify -t [ babelify --presets [ es2015 ] ] --standalone PersonalityTraitDescriptions 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+https://github.com/personality-insights/trait-descriptions.git"
},
"keywords": [
"personality",
"insights",
"trait",
"description",
"ibm",
"watson"
],
"author": "IBM Corp.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/personality-insights/trait-descriptions/issues"
},
"homepage": "https://github.com/personality-insights/trait-descriptions#readme",
"dependencies": {
"lodash.includes": "^4.3.0",
"lodash.keys": "^4.2.0",
"lodash.pairs": "^3.0.1",
"lodash.pick": "^4.4.0",
"marked": "^0.3.18",
"remove-markdown": "^0.2.2"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babelify": "^7.3.0",
"browserify": "^16.1.1",
"chai": "^4.0.2",
"codecov": "^3.0.0",
"eslint": "^4.19.1",
"istanbul": "^0.4.5",
"mocha": "^5.0.5"
}
}