-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.98 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
{
"name": "fun-test",
"version": "0.25.0",
"description": "Functions for writing tests functionally",
"main": "src/index.js",
"browser": "dist/bundle.js",
"scripts": {
"pretest": "npm run lint",
"test": "tap -Rtap --coverage-report=text-summary ./test/index.js",
"coverage": "tap --coverage-report=lcov ./test/index.js",
"predependencies": "mkdir -p img",
"dependencies": "madge src --image img/dependencies.svg -x 'public|test|coverage|docs' --include-npm",
"postdependencies": "npm run dependencies-test",
"dependencies-test": "madge . --image img/dependencies-test.svg -x 'dist|public|coverage|docs' --include-npm",
"pages-index": "showdown makehtml -i README.md -o public/index.html",
"pages": "./script/pages.sh",
"lint": "eslint --ignore-path .gitignore --fix . --ignore-pattern dist",
"predocument": "rm -rf docs",
"document": "jsdoc -c .jsdoc.json",
"browserify": "browserify dist/entry.js --no-bf | uglifyjs -cm > dist/bundle.js",
"readme": "cat readme/* > README.md",
"next-update": "next-update -k true --tldr"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/bagrounds/fun-test.git"
},
"keywords": [
"test",
"function"
],
"author": "bagrounds <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/bagrounds/fun-test/issues"
},
"homepage": "https://gitlab.com/bagrounds/fun-test#README",
"dependencies": {
"fun-async": "0.2.0",
"fun-function": "0.11.0",
"fun-object": "0.7.1",
"fun-type": "^0.7.1",
"guarded": "^0.9.0",
"set-prop": "^0.1.3",
"stringify-anything": "0.7.0"
},
"devDependencies": {
"browserify": "15.2.0",
"docdash": "^0.4.0",
"eslint": "4.16.0",
"fun-arrange": "^0.1.4",
"fun-array": "^0.11.0",
"fun-predicate": "0.17.0",
"fun-test-runner": "^0.10.0",
"jsdoc": "^3.5.5",
"madge": "2.2.0",
"next-update": "3.6.0",
"tap": "11.0.1",
"uglify-js-es6": "^2.8.9"
}
}