forked from fluture-js/inspect-f
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.31 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
{
"name": "inspect-f",
"version": "1.2.1",
"description": "Cast a function to string and adjust its indentation",
"main": "index.js",
"files": [],
"scripts": {
"clean": "rimraf npm-debug.log .nyc_output coverage.lcov",
"lint": "eslint index.js test",
"release": "npm outdated --long && xyz --edit --repo [email protected]:fluture-js/fluture-sanctuary-types.git --tag 'X.Y.Z' --increment",
"test": "npm run lint && npm run test:unit",
"test:unit": "nyc mocha --ui bdd --reporter list --check-leaks --full-trace test/**.test.js",
"test:coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"repository": {
"type": "git",
"url": "https://github.com/fluture-js/inspect-f.git"
},
"keywords": [
"cast",
"inspect",
"function",
"toString",
"show",
"indent"
],
"author": "Aldwin Vlasblom <[email protected]> (https://github.com/Avaq)",
"license": "MIT",
"bugs": {
"url": "https://github.com/fluture-js/inspect-f/issues"
},
"homepage": "https://github.com/fluture-js/inspect-f#readme",
"devDependencies": {
"chai": "^4.0.1",
"codecov": "^3.0.0",
"eslint": "^4.2.0",
"eslint-config-warp": "^2.0.0",
"jsverify": "^0.8.2",
"mocha": "^4.0.0",
"nyc": "^11.0.1",
"rimraf": "^2.6.1",
"xyz": "^2.1.0"
}
}