-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 901 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 901 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
{
"name": "@benjaminreid/dom",
"version": "1.1.0",
"description": "A set of handy DOM functions",
"main": "lib/index.js",
"repository": "https://github.com/benjaminreid/dom.git",
"author": "Benjamin Reid <benjaminreid.nouveller@gmail.com>",
"license": "MIT",
"scripts": {
"prepublishOnly": "yarn run test && yarn run tsc && yarn run build",
"test": "jest",
"compress": "terser lib/index.js --output lib/index.js",
"compile": "babel src -d lib --extensions \".ts\" --ignore \"**/*.test.ts\"",
"build": "yarn run compile && yarn run compress"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@babel/preset-typescript": "^7.8.3",
"@testing-library/dom": "^6.12.2",
"@testing-library/jest-dom": "^5.1.1",
"jest": "^25.1.0",
"terser": "^4.6.3",
"typescript": "^3.7.5"
}
}