-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 865 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
40
{
"name": "boxset",
"version": "0.3.4",
"license": "MIT",
"source": "src/index.ts",
"main": "dist/boxset.js",
"module": "dist/boxset.modern.js",
"unpkg": "dist/boxset.umd.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=14"
},
"scripts": {
"prepack": "tsc --noEmit && npm run build && jest",
"dev": "microbundle watch",
"build": "microbundle --format modern,cjs,umd",
"test": "jest --watch",
"test:ci": "jest"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"author": "Patrick Smith",
"sideEffects": false,
"devDependencies": {
"@types/jest": "^27.0.1",
"jest": "^27.1.0",
"microbundle": "^0.13.3",
"ts-jest": "^27.0.5",
"tslib": "^2.3.1",
"typescript": "^4.3.5"
}
}