-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 812 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 812 Bytes
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
{
"name": "emails-input",
"description": "vanilla js emails input",
"version": "0.0.1",
"license": "MIT",
"author": "vloth <fran.fhb@gmail.com>",
"engines": {
"node": "^v16.0.0"
},
"scripts": {
"preinstall": "npx npm-force-resolutions",
"test": "mocha --recursive 'test/**/*.test.js'",
"lint": "eslint src/js/** && stylelint src/css",
"test:watch": "npm t -- --reporter min --watch"
},
"devDependencies": {
"@testing-library/dom": "^7.21.0",
"@testing-library/user-event": "^12.0.11",
"eslint": "^7.5.0",
"jsdom": "^16.3.0",
"mocha": "^8.0.1",
"postcss": "^8.2.10",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0"
},
"resolutions": {
"ini": "^1.3.8",
"hosted-git-info": "^2.8.9",
"postcss": ">=8.2.10"
}
}