-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 980 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
32
33
34
35
36
37
38
39
40
{
"name": "age-picker",
"version": "1.2.0",
"description": "Enhance `input` tags for collecting age information using `data-` attributes and simple wireup JavaScript.",
"bin": "lib/age-picker.min.js",
"files": [
"lib/"
],
"keywords": [
"age",
"picker"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ritterim/age-picker"
},
"scripts": {
"build": "webpack -d",
"coverage": "jest --coverage",
"lint": "eslint src tests",
"test": "jest",
"test:watch": "jest --watch",
"validate": "npm run lint && npm test",
"watch": "webpack -d --watch"
},
"author": {
"name": "Ritter Insurance Marketing"
},
"devDependencies": {
"babel-core": "^6.16.0",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.2.5",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.16.0",
"eslint": "^6.5.1",
"jest": "^19.0.2",
"webpack": "^1.13.2"
}
}