-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
102 lines (102 loc) · 2.76 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "react-easy-params",
"version": "2.0.2",
"description": "Automatic synchronization between your state, the URL and the LocalStorage.",
"main": "dist/cjs.es5.js",
"module": "dist/es.es5.js",
"types": "types/index.d.ts",
"files": [
"dist",
"types"
],
"scripts": {
"test": "node ./scripts/test.js",
"test-builds": "node ./scripts/testBuilds.js",
"lint": "standard",
"lint-fix": "prettier --ignore-path '.gitignore' --write '**/*.{js,jsx}' '!**/build/**' && standard --fix",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"build": "node ./scripts/build.js",
"build-examples": "node ./scripts/buildExamples.js",
"link-examples": "node ./scripts/linkExamples.js",
"unlink-examples": "node ./scripts/unlinkExamples.js",
"build-toc": "node ./scripts/buildToc.js"
},
"author": {
"name": "Miklos Bertalan",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "[email protected]:solkimicreb/react-easy-params.git"
},
"bugs": {
"url": "https://github.com/solkimicreb/react-easy-params/issues"
},
"homepage": "https://github.com/solkimicreb/react-easy-params#readme",
"license": "MIT",
"keywords": [
"react",
"state",
"url",
"history",
"localstorage",
"transparent",
"reactive",
"binding",
"routing"
],
"dependencies": {
"@nx-js/observer-util": "^4.2.0",
"@nx-js/queue-util": "^1.1.1"
},
"devDependencies": {
"babel-core": "6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-minify": "^0.4.3",
"babel-plugin-array-includes": "^2.0.3",
"babel-preset-es2016": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"buble": "^0.19.3",
"chai": "^4.1.2",
"coveralls": "^3.0.1",
"karma": "^2.0.2",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-mocha": "^1.3.0",
"karma-rollup-preprocessor": "^6.0.0",
"karma-source-map-support": "^1.3.0",
"markdown-toc": "^1.2.0",
"mocha": "^5.2.0",
"nyc": "12.0.2",
"pre-push": "^0.1.1",
"prettier": "^1.13.5",
"rollup": "^0.60.7",
"rollup-plugin-alias": "^1.4.0",
"rollup-plugin-auto-external": "^1.2.0",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-coverage": "^0.1.4",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-replace": "^2.0.0",
"standard": "^11.0.1"
},
"standard": {
"parser": "babel-eslint",
"env": [
"browser",
"mocha"
],
"ignore": [
"**/build/**",
"**/node_modules/**"
]
},
"pre-push": [
"lint",
"test"
]
}