-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.28 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.28 KB
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": "d-pac.functions",
"version": "2.2.2",
"description": "Statistical and psychometic helper functions used in d-pac",
"homepage": "https://github.com/d-pac/d-pac.functions",
"author": {
"name": "d-pac",
"email": "info@d-pac.be",
"url": "http://www.d-pac.be"
},
"repository": {
"type": "git",
"url": "https://github.com/d-pac/d-pac.functions"
},
"main": "index.js",
"files": [
"lib",
"index.js",
"es5.js",
"es5"
],
"scripts": {
"test": "mocha",
"test-cov": "istanbul cover _mocha",
"docs": "documentation readme lib -f md --section=API",
"lint": "eslint lib tests && echo 'Linting finished!'",
"build:es5": "babel ./lib/stat.js -o ./es5/stat.js --presets=es2015;babel ./lib/pm.js -o ./es5/pm.js --presets=es2015"
},
"keywords": [
"d-pac",
"statistics",
"psychometric"
],
"license": "GPL-3.0",
"dependencies": {},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-preset-es2015": "6.24.1",
"documentation": "^5.2.2",
"eslint": "2.13.1",
"eslint-config-prototypers": "0.2.0",
"istanbul": "0.4.5",
"lodash": "4.0.1",
"markdown-include": "0.4.2",
"mocha": "2.4.4",
"must": "0.13.1",
"require-directory": "2.1.1"
},
"engines": {
"node": ">=6.9.5"
}
}