-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.09 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.09 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
69
70
71
72
73
74
75
{
"name": "promdash",
"version": "1.2.1",
"description": "ES6 implementation of lodash",
"main": "promdash.js",
"repository": {
"type": "git",
"url": "https://github.com/johngeorgewright/promdash"
},
"scripts": {
"build": "babel -o promdash.js promdash.src.js",
"lint": "eslint .",
"prepublish": "yarn test && yarn build",
"publish-coverage": "rm -rf coverage && cross-env NODE_ENV=test nyc --reporter=text-lcov mocha | coveralls",
"spec": "rm -rf coverage && cross-env NODE_ENV=test nyc --reporter=html --reporter=text mocha --check-leaks",
"spec-watch": "mocha --watch --growl --check-leaks --require @babel/register --reporter dot",
"test": "yarn lint && yarn spec"
},
"lint-staged": {
"*.src.js": [
"eslint --quiet --fix"
]
},
"nyc": {
"include": [
"promdash.src.js"
],
"require": [
"@babel/register"
],
"sourceMap": false,
"instrument": false
},
"keywords": [
"Promise",
"lodash"
],
"author": "John Wright <johngeorge.wright@gmail.com>",
"license": "ISC",
"devDependencies": {
"@babel/cli": "7.23.9",
"@babel/core": "7.23.9",
"@babel/eslint-parser": "7.23.10",
"@babel/preset-env": "7.23.9",
"@babel/register": "7.23.7",
"@semantic-release/commit-analyzer": "9.0.2",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "8.1.0",
"@semantic-release/npm": "9.0.2",
"@semantic-release/release-notes-generator": "10.0.3",
"babel-plugin-istanbul": "6.1.1",
"babel-upgrade": "1.0.1",
"chai": "4.4.1",
"chai-as-promised": "7.1.1",
"coveralls": "3.1.1",
"cross-env": "7.0.3",
"eslint": "8.56.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-n": "15.7.0",
"eslint-plugin-promise": "6.1.1",
"husky": "8.0.3",
"lint-staged": "13.3.0",
"lodash": "4.17.21",
"mocha": "10.2.0",
"nyc": "15.1.0",
"semantic-release": "19.0.5",
"sinon": "14.0.2",
"sinon-chai": "3.7.0"
},
"peerDependencies": {
"lodash": "*"
},
"packageManager": "yarn@3.8.7"
}