forked from ritterim/age-picker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.53 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.53 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
{
"name": "age-picker",
"version": "1.0.0-alpha.1",
"description": "Enhance `input` tags for collecting age with optional date selection, triggered by entering a year.",
"bin": "lib/age-picker.min.js",
"files": [
"lib/"
],
"keywords": [
"age",
"picker"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ritterim/age-picker"
},
"scripts": {
"audit": "nsp check package",
"build": "webpack -d",
"check": "npm run audit && npm outdated --depth 0",
"coverage": "nyc --all --require babel-core/register --reporter=lcov --reporter=text --reporter=html ava",
"coveralls": "npm run coverage && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
"lint": "eslint src test",
"test": "ava",
"test:watch": "ava --watch",
"validate": "npm run lint && npm test",
"prepare": "npm run build && npm run validate && npm run check",
"watch": "webpack -d --watch"
},
"ava": {
"require": [
"babel-core/register",
"./test/helpers/setup-browser-env.js"
]
},
"nyc": {
"include": [
"src/**"
]
},
"author": {
"name": "Ritter Insurance Marketing"
},
"devDependencies": {
"ava": "^0.16.0",
"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",
"coveralls": "^2.11.14",
"eslint": "^3.6.1",
"jsdom": "^9.5.0",
"nsp": "^2.6.1",
"nyc": "^8.3.0",
"webpack": "^1.13.2"
}
}