-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.47 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.47 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
{
"name": "deepstrike",
"version": "0.0.1",
"description": "There's lodash, there's underscore - and there's all the little helpers I wrote my self.",
"main": "index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"test": "mocha tests/*.test.js",
"test:dev": "mocha --reporter=min --watch \"tests/*.test.js\"",
"test:coverage": "nyc mocha tests/*.test.js --verbose",
"test:coverage-ci": "nyc --check-coverage --lines 100 mocha tests/*.test.js --verbose",
"lint": "./node_modules/.bin/eslint .",
"lint-fix": "./node_modules/.bin/eslint --fix ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/frederikheld/deepstrike.git"
},
"keywords": [
"utilies",
"helper",
"underscore",
"lodash"
],
"author": "Frederik S. Held (kontakt@frederikheld.de)",
"license": "MIT",
"bugs": {
"url": "https://github.com/frederikheld/deepstrike/issues"
},
"homepage": "https://github.com/frederikheld/deepstrike#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-mocha": "^9.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"espree": "^9.0.0",
"mocha": "^9.1.2",
"sinon": "^14.0.1"
},
"dependencies": {
"chai": "^4.3.6",
"nyc": "^15.1.0"
}
}