-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 1.05 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
{
"name": "semantic-dom-events",
"version": "0.0.1",
"description": "Trigger browser events with a more user perspective while having semantic in mind4",
"main": "index.js",
"scripts": {
"test": "jest --ci --coverage --config config/jest.config.json",
"test:watch": "jest --watchAll --config config/jest.config.json"
},
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.4",
"@babel/plugin-proposal-class-properties": "^7.5.0",
"@babel/plugin-transform-runtime": "^7.5.0",
"@babel/preset-env": "^7.5.4",
"@babel/preset-react": "^7.0.0",
"@testing-library/jest-dom": "^4.2.0",
"@testing-library/react": "^9.3.0",
"jest": "24.8.0",
"babel-jest": "^24.8.0",
"react": "16.13.1",
"react-dom": "16.13.1"
},
"keywords": ["dom", "js", "browser", "node", "integration", "event", "test", "semantic", "user"],
"babel": {
"presets": [
"@babel/env",
"@babel/react"
],
"plugins": [
"@babel/plugin-transform-runtime",
"@babel/proposal-class-properties"
]
}
}