forked from omnidan/redux-undo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.9 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 2.9 KB
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
{
"name": "redux-undo",
"version": "1.0.1",
"description": "simple undo/redo functionality for redux state containers",
"main": "lib/index.js",
"typings": "typings.d.ts",
"jspm": {
"main": "src/index.js",
"format": "esm"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-babel",
"include": [
"src/**/*.js"
]
},
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [
"@babel/plugin-proposal-object-rest-spread"
],
"env": {
"test": {
"plugins": [
"babel-plugin-istanbul"
]
}
},
"only": [
"src/*",
"test/*",
"webpack.config.babel.js"
]
},
"scripts": {
"prebuild": "npm run clean",
"build": "npm-run-all --parallel build:*",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es",
"build:umd": "cross-env BABEL_ENV=commonjs NODE_ENV=development webpack --mode=production",
"build:umd:min": "cross-env BABEL_ENV=commonjs NODE_ENV=production webpack --mode=production",
"clean": "npx rimraf lib/ dist/ es/",
"lint": "npx eslint webpack.config.babel.js src test",
"prepublish": "npm-run-all --sequential lint test clean build",
"test": "cross-env NODE_ENV=test nyc mocha --require @babel/register",
"test:bail": "npm run test:watch -- --bail",
"test:cov": "cross-env NODE_ENV=test nyc --reporter=text --reporter=lcov mocha --require @babel/register",
"test:coveralls": "nyc report --reporter=text-lcov | coveralls",
"test:watch": "npm run test -- --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/omnidan/redux-undo.git"
},
"keywords": [
"redux",
"undo",
"redo",
"flux",
"time travel"
],
"author": "Daniel Bugl <me@omnidan.net> (https://github.com/omnidan)",
"license": "MIT",
"bugs": {
"url": "https://github.com/omnidan/redux-undo/issues"
},
"homepage": "https://github.com/omnidan/redux-undo",
"devDependencies": {
"@babel/cli": "^7.7.5",
"@babel/core": "^7.7.5",
"@babel/node": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.7.4",
"@babel/preset-env": "^7.7.6",
"@babel/register": "^7.7.4",
"@istanbuljs/nyc-config-babel": "^2.1.1",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-istanbul": "^5.2.0",
"chai": "^4.2.0",
"coveralls": "^3.0.9",
"cross-env": "^6.0.3",
"eslint": "^6.7.2",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"expect": "^24.9.0",
"mocha": "^6.2.2",
"mocha-lcov-reporter": "^1.3.0",
"npm-run-all": "^4.1.5",
"nyc": "^14.1.1",
"redux": "^4.0.4",
"rimraf": "^3.0.0",
"webpack": "^4.41.3",
"webpack-cli": "^3.3.10"
}
}