forked from smartprocure/futil-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.05 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.05 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "futil-js",
"version": "1.29.6",
"description": "F(unctional) util(ities). Resistance is futile.",
"main": "lib/futil-js.js",
"scripts": {
"build": "webpack",
"danger": "duti",
"test": "babel-node ./node_modules/mocha/bin/_mocha",
"test:watch": "chokidar 'src/*.js' 'test/*.js' -c 'npm t'",
"coverage": "nyc --require babel-core/register node_modules/.bin/mocha test",
"cicoverage": "nyc --reporter=lcov --require babel-core/register --require babel-polyfill mocha test --reporter json > test-results.json",
"lint": "eslint dangerfile.js src/*.js test/*.js",
"lint:ci": "npm run lint -- -o lint-results.json -f json",
"lint-fix": "eslint dangerfile.js src/*.js test/*.js --fix",
"prepublish": "webpack"
},
"author": "Samuel Greene <sgreene@smartprocure.us>",
"license": "MIT",
"dependencies": {
"babel-polyfill": "^6.23.0",
"lodash": "^4.17.4"
},
"babel": {
"presets": [
"latest"
]
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^7.0.0",
"babel-preset-latest": "^6.22.0",
"bluebird": "^3.5.0",
"chai": "^4.1.0",
"chai-as-promised": "^7.0.0",
"chokidar": "^1.6.1",
"chokidar-cli": "^1.2.0",
"codacy-coverage": "^2.0.1",
"coveralls": "^2.11.16",
"duti": "latest",
"eslint": "4.1.0",
"eslint-config-standard": "^10.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-lodash-fp": "^2.0.1",
"eslint-plugin-mocha": "^4.8.0",
"eslint-plugin-node": "^5.0.0",
"eslint-plugin-promise": "3.4.2",
"eslint-plugin-standard": "^3.0.0",
"mocha": "^3.2.0",
"mocha-lcov-reporter": "^1.2.0",
"nyc": "^11.0.2",
"webpack": "^3.0.0"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/smartprocure/futil-js.git"
},
"bugs": {
"url": "https://github.com/smartprocure/futil-js/issues"
},
"homepage": "https://github.com/smartprocure/futil-js#readme"
}