-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
40 lines (40 loc) · 1023 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": "lonna",
"version": "0.12.2",
"main": "dist/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"files": [
"dist",
"src"
],
"devDependencies": {
"@types/jest": "^26.0.10",
"babel-jest": "^26.3.0",
"concurrently": "^5.3.0",
"jest": "^26.4.0",
"nodemon": "^2.0.7",
"ts-jest": "^26.4.0",
"tsc-watch": "^4.2.9",
"tsd": "^0.14.0",
"typescript": "^4.2",
"prettier": "^2.2.1"
},
"dependencies": {
"optics-ts": "^1.2.0"
},
"peerDependencies": {},
"scripts": {
"build": "concurrently \"yarn build:esm\" \"yarn build:cjs\"",
"build:esm": "tsc -p tsconfig.esm.json",
"build:cjs": "tsc",
"build:watch": "tsc-watch --onSuccess \"yarn build:esm\"",
"test": "jest",
"test:watch": "jest --watchAll",
"tsd": "tsd",
"tsd:watch": "nodemon --exec 'yarn tsd' --watch test-d --watch src -e ts",
"prepublishOnly": "rm -rf dist && yarn build",
"format": "prettier --write ."
}
}