-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.41 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
{
"name": "tates",
"version": "0.3.4",
"description": "A library for creating and subscribing to changes on a state object",
"main": "index.js",
"type": "module",
"types": "./dist/index.d.ts",
"scripts": {
"build": "run-s clean ts && rollup --config",
"clean": "rimraf dist typings index.js",
"lint": "run-s clean ts:silent && eslint src/**/*.ts --quiet --fix",
"prepublish": "run-s build",
"ts": "tsc -p .",
"ts:silent": "tsc --noEmit -p .",
"test": "jest"
},
"author": "Will Johnston <dev@wwj.dev>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@types/jest": "^29.2.5",
"@types/lodash": "^4.14.191",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"babel-jest": "^29.3.1",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"jest": "^29.3.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.1",
"rimraf": "^3.0.2",
"rollup": "^3.9.1",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
},
"dependencies": {
"lodash": "^4.17.21"
}
}