-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.16 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
{
"name": "two-way-data-binding",
"version": "2.1.4",
"description": "Minimal two way data binding in vanilla JS",
"license": "MIT",
"private": false,
"publishConfig": {
"access": "public"
},
"contributors": [
{
"name": "Roger Cornet",
"email": "[email protected]"
},
{
"name": "Ricard Torres",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/quicoto/two-way-data-binding"
},
"main": "src/index.js",
"scripts": {
"develop": "esbuild --bundle develop/index.js --outfile=develop/index.min.js --servedir=develop",
"lint": "eslint .",
"test": "jest",
"watch:test": "jest --watch",
"prepare": "husky install"
},
"keywords": [
"js",
"data-binding",
"vanillaJS",
"model"
],
"devDependencies": {
"@babel/preset-env": "^7.22.7",
"@testing-library/jest-dom": "^5.16.5",
"babel-jest": "^29.6.1",
"esbuild": "^0.18.11",
"eslint": "^8.44.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-jest": "^27.2.2",
"husky": "^8.0.3",
"jest": "^29.6.1",
"jest-environment-jsdom": "^29.6.1"
}
}