-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.27 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
{
"name": "assert-fine",
"version": "2.1.0",
"description": "A lightweight wrapper making assertion testing much easier.",
"browser": "src/browser.js",
"main": "src/index.js",
"homepage": "https://github.com/valango/assert-fine#readme",
"repository": {
"type": "git",
"url": "git://github.com/valango/assert-fine.git"
},
"author": "Villem Alango <[email protected]>",
"license": "MIT",
"keywords": [
"assert",
"back-end",
"backend",
"breakpoint",
"browser",
"format",
"front-end",
"frontend",
"lazy",
"lightweight",
"node.js",
"state"
],
"files": [
"src"
],
"scripts": {
"clean": "rimraf *.tmp *.l* reports",
"lint": "eslint .",
"purge": "npm run clean && rimraf node_modules",
"t": "jest --config test/jest.config.js test/fr*.spec.js",
"test": "jest --config test/jest.config.js",
"test:coverage": "codecov"
},
"devDependencies": {
"assert": "^2.0.0",
"codecov": "^3.8.1",
"eslint": "^7.14.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"jest": "^27.5.1",
"rimraf": "^3.0.2"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=10.15.1"
}
}