-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.12 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
51
52
53
54
{
"name": "yieldparser",
"version": "0.4.1",
"license": "MIT",
"source": "src/index.ts",
"main": "dist/yieldparser.js",
"module": "dist/yieldparser.module.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"browser": "./dist/yieldparser.module.js",
"import": "./dist/yieldparser.module.js",
"require": "./dist/yieldparser.js"
}
},
"targets": {
"main": {
"optimize": true
},
"module": {
"optimize": true
}
},
"files": [
"dist",
"src"
],
"engines": {
"node": ">=16"
},
"scripts": {
"prepack": "tsc --noEmit && jest && npm run build",
"dev": "parcel watch",
"build": "parcel build",
"test": "jest --watch"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"author": "Patrick Smith",
"devDependencies": {
"@parcel/packager-ts": "^2.10.3",
"@parcel/transformer-typescript-types": "^2.10.3",
"@swc/jest": "^0.2.29",
"@types/jest": "^26.0.24",
"jest": "^26.6.3",
"parcel": "^2.10.3",
"prettier": "^2.8.8",
"typescript": "^4.9.5"
}
}