forked from Alheimsins/b5-johnson-120-ipip-neo-pi-r
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.59 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
{
"name": "@alheimsins/b5-johnson-120-ipip-neo-pi-r",
"description": "Module for returning Big Five Johnson 120 IPIP-NEO-PI-R items",
"version": "2.1.5",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"author": {
"name": "Geir Gåsodden",
"email": "[email protected]",
"url": "https://github.com/zrrrzzt"
},
"contributors": [
{
"name": "Jonas Enge",
"email": "[email protected]",
"url": "https://github.com/maccyber"
}
],
"main": "index.js",
"engines": {
"node": ">=10.0.0"
},
"files": [
"data/",
"index.js"
],
"scripts": {
"test": "standard && npm audit && ava",
"test-offline": "standard && ava",
"coverage": "nyc ava",
"coveralls": "nyc ava && nyc report --reporter=lcov && cat coverage/lcov.info | coveralls",
"standard-fix": "standard --fix",
"refresh": "rm -rf node_modules && rm package-lock.json && npm install"
},
"keywords": [
"bigfive",
"personality",
"items",
"johnson-120-ipip-neo-pi-r"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Alheimsins/b5-johnson-120-ipip-neo-pi-r.git"
},
"bugs": {
"url": "https://github.com/Alheimsins/b5-johnson-120-ipip-neo-pi-r/issues"
},
"homepage": "https://github.com/Alheimsins/b5-johnson-120-ipip-neo-pi-r#readme",
"devDependencies": {
"ava": "1.4.1",
"coveralls": "3.0.3",
"husky": "1.3.1",
"nyc": "14.0.0",
"standard": "12.0.1"
},
"dependencies": {
"knuth-shuffle": "1.0.8"
},
"husky": {
"hooks": {
"pre-commit": "npm test"
}
}
}