-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.78 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
{
"name": "@avidian/state",
"version": "1.3.6",
"private": false,
"description": "Library for handling state in LocalStorage or AsyncStorage.",
"types": "types/index.d.ts",
"main": "lib/index.js",
"files": [
"lib/*",
"types/*"
],
"scripts": {
"clean": "rm -rf dist && rm -rf types",
"test": "jest --coverage",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "npm run clean && npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline"
},
"keywords": [
"storage",
"local storage",
"async storage",
"state"
],
"repository": {
"type": "git",
"url": "git+https://github.com/avidianity/state"
},
"author": "John Michael Manlupig",
"license": "MIT",
"homepage": "https://github.com/avidianity/state#readme",
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@types/browser-or-node": "^1.3.0",
"@types/core-js": "^2.5.5",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.10",
"@types/regenerator-runtime": "^0.13.1",
"@types/uuid": "^8.3.4",
"jest": "^27.3.1",
"jest-badges": "^0.1.3",
"typescript": "^4.5.2"
},
"dependencies": {
"@avidian/events": "^1.0.3",
"browser-or-node": "^2.0.0",
"core-js": "^3.19.1",
"regenerator-runtime": "^0.13.9",
"uuid": "^8.3.2"
}
}