This repository has been archived by the owner on Jul 18, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.45 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "crocks-extra",
"version": "0.0.0",
"description": "A collection of extra functions to work in tandem with Crocks that aren't related to ADT's.",
"main": "./index.js",
"scripts": {
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"setup": "node ./bin/setup.js",
"precommit": "lint-staged",
"preversion": "npm run build",
"postpublish": "npm run docs:deploy",
"build:publish": "npm test && ./bin/publish",
"build:dist": "webpack && uglifyjs build/dist/crocks-extra.js -c \"warnings=false\" -m -o build/dist/crocks-extra.min.js",
"build": "doctoc && rimraf build && buble -i src -o build && npm run build:dist",
"doctoc": "doctoc README.md",
"docs:dev": "cd docs && npm start",
"docs:deploy": "cd docs && npm run docs:deploy",
"lint": "eslint --ext .md,.js .",
"lint:dev": "esw --ext .md,.js . -w --color",
"spec:coverage": "nyc npm run spec:build",
"spec:dev": "nodemon -q -e js -w src -x \"npm run spec:src -s | tap-spec\"",
"spec:build": "npm run build && tape build/**/*.spec.js build/*.spec.js",
"spec:src": "tape src/**/*.spec.js src/*.spec.js",
"test": "npm run lint && npm run spec:coverage",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"lint-staged": {
"*.{js,md}": [
"eslint --fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/crocksjs/crocks-extra.git"
},
"keywords": [
"FP",
"Functional"
],
"author": "Ian Hofmann-Hicks <[email protected]> (https://github.com/evilsoft)",
"license": "ISC",
"bugs": {
"url": "https://github.com/crocksjs/crocks-extra/issues"
},
"homepage": "https://crocksjs.github.io/crocks-extra",
"nyc": {
"check-coverage": true,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"exclude": [
"src/",
"build/test/",
"**/*.spec.js"
]
},
"devDependencies": {
"all-contributors-cli": "^5.4.0",
"buble": "^0.19.4",
"coveralls": "^3.0.0",
"doctoc": "^1.3.1",
"eslint": "^5.6.1",
"eslint-plugin-markdown": "1.0.0-beta.6",
"eslint-watch": "^4.0.2",
"husky": "^0.14.3",
"lint-staged": "^7.3.0",
"nodemon": "1.17.1",
"nyc": "^13.0.1",
"rimraf": "^2.6.2",
"sinon": "^6.3.5",
"tap-spec": "^5.0.0",
"tape": "^4.9.0",
"uglify-js": "^3.4.9",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.1"
}
}