-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.35 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
{
"name": "any-serialize",
"version": "1.4.12",
"main": "lib/index.js",
"module": "lib/index.mjs",
"unpkg": "lib/index.min.mjs",
"types": "lib/index.d.ts",
"author": "Pacharapol Withayasakpunt <[email protected]> (https://polvcode.dev)",
"license": "MIT",
"files": [
"lib",
"src"
],
"scripts": {
"build": "rimraf lib && rollup -c && yarn tsc",
"tsc": "tsc -P src/tsconfig.json",
"prepack": "yarn build && yarn deploy",
"test": "ts-mocha tests/**/*.spec.ts",
"deploy": "ts-node deploy/1-deploy.ts",
"deploy:dev": "python -m http.server --directory gh-pages"
},
"devDependencies": {
"@rollup/plugin-typescript": "^3.0.0",
"@types/fs-extra": "^8.1.0",
"@types/glob": "^7.1.1",
"@types/mocha": "^5.2.7",
"@types/node": "^13.7.2",
"@typescript-eslint/eslint-plugin": "^2.19.2",
"@typescript-eslint/parser": "^2.19.2",
"eslint": ">=6.2.2",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": ">=2.18.0",
"eslint-plugin-node": ">=9.1.0",
"eslint-plugin-promise": ">=4.2.1",
"eslint-plugin-standard": ">=4.0.0",
"fs-extra": "^8.1.0",
"glob": "^7.1.6",
"mocha": "^6.0.0",
"rimraf": "^3.0.2",
"rollup": "^1.31.1",
"rollup-plugin-babel-minify": "^9.1.1",
"ts-mocha": "^6.0.0",
"typescript": "^3.7.5"
},
"engines": {
"yarn": "1.x"
}
}