-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 945 Bytes
/
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
{
"name": "polyfill-css-has",
"version": "1.0.0",
"main": "./dist/polyfill-css-has.js",
"types": "./dist/polyfill-css-has.d.ts",
"license": "MIT",
"engines": {
"node": "^8.6.0"
},
"scripts": {
"dev": "webpack --mode development",
"build": "webpack --mode production",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^22.2.3",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"jest": "^22.4.3",
"jsdom": "^11.9.0",
"prettier": "^1.12.1",
"ts-jest": "^22.4.4",
"ts-loader": "^4.2.0",
"typescript": "^2.8.3",
"webpack": "^4.6.0",
"webpack-cli": "^2.0.15"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": ["ts", "tsx", "js", "jsx", "json", "node"]
},
"dependencies": {
"core-js": "^2.5.5"
}
}