-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
36 lines (36 loc) · 1.05 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
{
"name": "react-trigger-change",
"version": "1.0.2",
"description": "Trigger React's synthetic change events on input, textarea and select elements",
"license": "MIT",
"repository": "vitalyq/react-trigger-change",
"author": "Vitaly Kuznetsov",
"main": "lib/change.js",
"scripts": {
"lint": "eslint lib \"test/*.js\"",
"build:dev": "webpack lib/change.js dist/react-trigger-change.js --output-library=reactTriggerChange --output-library-target=umd",
"build:min": "webpack lib/change.js dist/react-trigger-change.min.js -p --output-library=reactTriggerChange --output-library-target=umd",
"build": "npm run build:dev && npm run build:min",
"test": "grunt"
},
"devDependencies": {
"eslint": "3.19.0",
"eslint-config-airbnb-base": "11.1.3",
"eslint-plugin-import": "2.2.0",
"grunt": "^1.0.1",
"grunt-contrib-connect": "^1.0.2",
"grunt-saucelabs": "^9.0.0",
"webpack": "^2.3.2"
},
"files": [
"lib",
"dist"
],
"keywords": [
"react",
"trigger",
"dispatch",
"change",
"event"
]
}