-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.22 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
{
"name": "@rturnq/solid-store",
"version": "0.2.0",
"description": "A store pattern for solid-js",
"author": "Ryan Turnquist",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rturnq/solid-store"
},
"private": false,
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc&&rollup -c",
"prebuild": "rimraf dist",
"test": "jest && npm run test:types",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage && npm run test:types",
"test:types": "tsc --project tsconfig.test.json",
"prepublishOnly": "npm run build"
},
"files": [
"dist"
],
"peerDependencies": {
"solid-js": "^0.23.3"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/preset-env": "^7.12.7",
"@babel/preset-typescript": "^7.12.7",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-node-resolve": "^11.0.0",
"babel-preset-solid": "^0.23.0",
"jest": "^26.6.3",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"rollup": "^2.23.0",
"rollup-plugin-filesize": "^9.0.0",
"solid-js": "^0.23.3",
"ts-node": "^9.1.1",
"tslib": "^2.0.0",
"typescript": "^4.1.3"
}
}