forked from justin-schroeder/arrow-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.33 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
{
"name": "@arrow-js/core",
"version": "1.0.0-alpha.2",
"description": "Reactivity without the framework.",
"author": "Justin Schroeder <[email protected]>",
"license": "MIT",
"main": "dist/index.min.mjs",
"module": "dist/index.min.mjs",
"types": "dist/index.d.ts",
"directories": {
"doc": "docs",
"test": "test"
},
"type": "module",
"devDependencies": {
"@size-limit/preset-small-lib": "^4.9.2",
"@snowpack/plugin-typescript": "^1.2.1",
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"eslint": "^7.19.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"jest": "^26.6.3",
"prettier": "^2.3.0",
"size-limit": "^4.9.2",
"snowpack": "^3.0.11",
"terser": "^5.5.1",
"ts-jest": "^26.5.0",
"typescript": "^4.1.3"
},
"engines": {
"node": ">=14.0.0"
},
"size-limit": [
{
"path": "dist/index.min.mjs",
"limit": "3 KB",
"brotli": true
}
],
"scripts": {
"dev": "snowpack dev",
"build:docs": "snowpack build",
"build": "tsc -b -v && node .build/terser.js && size-limit",
"test": "jest",
"size": "size-limit",
"minify": "node build/terser.js"
}
}