-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.43 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
55
56
57
58
{
"name": "shochu",
"version": "1.0.4",
"description": "Shochu is the Javascript utility library implementing Cocktails",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"homepage": "https://github.com/lngdao/shochu#readme",
"author": "Long Dao <[email protected]>",
"license": "MIT",
"files": [
"lib",
"dist",
"README.md",
"CHANGELOG.md",
"LICENSE",
"package.json"
],
"scripts": {
"test": "npx jest",
"out:tsc": "rm -rf lib && npx tsc",
"bundle": "rimraf dist lib && npx rollup -c",
"release": "standard-version",
"dev": "NODE_ENV=dev npx nodemon --watch \"src/**\" --ext \"ts,json\" --exec \"ts-node src/index.ts\""
},
"keywords": [
"utility",
"modules",
"cocktails"
],
"bugs": {
"url": "https://github.com/lngdao/shochu/issues"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@types/jest": "^29.4.0",
"cli-spinner": "^0.2.10",
"crypto-js": "^4.1.1",
"esbuild": "^0.17.12",
"jest": "^29.5.0",
"nodemon": "^2.0.21",
"rimraf": "^4.4.0",
"rollup": "^3.20.0",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-esbuild": "^5.0.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
"typescript": "^4.9.5"
},
"unpkg": "dist/shochu.min.js",
"bundlesize": [
{
"path": "./dist/shochu.min.js",
"threshold": "14kB"
}
]
}