-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 972 Bytes
/
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
{
"name": "memoized-change-handler",
"version": "1.0.1",
"description": "\"Dynamic 'onChange' handler creation with memoization\"",
"main": "src/index.js",
"scripts": {
"build": "npm run build:reg && npm run build:min",
"build:reg": "NODE_ENV=development rollup -c -o dist/index.js",
"build:min": "NODE_ENV=production rollup -c -o dist/index.min.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mfeniseycopes/memoized-change-handler.git"
},
"keywords": [
"react"
],
"author": "Meagan Fenisey-Copes",
"license": "ISC",
"bugs": {
"url": "https://github.com/mfeniseycopes/memoized-change-handler/issues"
},
"homepage": "https://github.com/mfeniseycopes/memoized-change-handler#readme",
"devDependencies": {
"babel-preset-es2015-rollup": "^3.0.0",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-replace": "^1.1.1",
"rollup-plugin-uglify": "^1.0.2"
}
}