-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.27 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": "tiny-little-store",
"version": "1.2.6",
"description": "minimalistic store for your app",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"babel-node": "babel-node",
"build": "NODE_ENV=production babel src/ --out-dir dist --source-maps inline",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sudo97/tiny-little-store.git"
},
"keywords": [
"store",
"state-management"
],
"author": "sudo97",
"license": "MIT",
"bugs": {
"url": "https://github.com/sudo97/tiny-little-store/issues"
},
"homepage": "https://github.com/sudo97/tiny-little-store#readme",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/node": "^7.8.4",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@types/jest": "^25.1.3",
"babel-eslint": "^10.0.3",
"babel-jest": "^25.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.7.0",
"jest": "^25.1.0",
"jest-cli": "^25.1.0"
},
"dependencies": {
"@babel/runtime": "^7.8.4",
"@babel/runtime-corejs3": "^7.8.4"
}
}