This repository has been archived by the owner on Sep 13, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 2.11 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
58
59
60
61
62
63
64
{
"name": "inferno-context-api-store",
"version": "2.0.2",
"description": "Seemless, lightweight, state management library that supports async actions and state persisting out of the box. Inspired by Redux and Vuex. Built on top of create-inferno-context.",
"main": "lib/index.js",
"scripts": {
"test": "clear && npm run build && jest --coverage --updateSnapshot",
"build": "babel-node build.js && cp lib/index.js example/src/lib.js",
"eslint": "eslint src/**/*.js __tests__/**/*.js --fix",
"prettier": "prettier \"src/**/*.js\" --write",
"lint": "npm run prettier && npm run eslint",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aprilmintacpineda/inferno-context-api-store.git"
},
"keywords": [
"stateful",
"state-management",
"inferno-create-context",
"store",
"global-states",
"inferno"
],
"files": [
"lib/*",
"README.md",
"package.json",
"package-lock.json"
],
"author": "April Mintac Pineda",
"license": "MIT",
"bugs": {
"url": "https://github.com/aprilmintacpineda/inferno-context-api-store/issues"
},
"homepage": "https://github.com/aprilmintacpineda/inferno-context-api-store#readme",
"dependencies": {
"create-inferno-context": "^0.2.4",
"inferno": "^5.5.0",
"raf": "^3.4.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-plugin-inferno": "^5.1.0",
"babel-plugin-minify-constant-folding": "^0.4.3",
"babel-plugin-minify-dead-code-elimination": "^0.4.3",
"babel-plugin-minify-flip-comparisons": "^0.4.3",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-minify-booleans": "^6.9.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-minify": "^0.4.3",
"babel-preset-react": "^6.24.1",
"eslint": "^4.19.1",
"eslint-plugin-inferno": "^7.10.0",
"jest": "^23.5.0",
"prettier": "^1.14.2"
}
}