-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.15 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.15 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
{
"name": "html5validation",
"version": "1.0.0",
"description": "HTML5 ValidityState shim",
"keywords": [
"Validation",
"ValidityState",
"HTML5",
"Shim"
],
"main": "dist/html5validation.js",
"files": [
"dist",
"LICENSE",
"package.json",
"README.md"
],
"scripts": {
"lint": "standard",
"pretest": "npm run lint",
"test": "karma start --single-run",
"prebuild": "npm run test",
"build": "webpack && webpack -p -d"
},
"repository": {
"type": "git",
"url": "github:JoeChapman/html5validation"
},
"standard": {
"ignore": [
"dist"
]
},
"babel": {
"presets": [
"es2015"
]
},
"author": "JoeChapman",
"email": "info@josephchapman.com",
"license": "MIT",
"readmeFilename": "README.md",
"devDependencies": {
"babel-core": "6.4.5",
"babel-loader": "6.2.1",
"babel-preset-es2015": "6.3.13",
"jasmine-core": "2.4.1",
"karma": "0.13.19",
"karma-jasmine": "0.3.6",
"karma-phantomjs-launcher": "0.2.3",
"karma-webpack": "1.7.0",
"phantomjs": "1.9.19",
"standard": "5.4.1",
"webpack": "1.12.12",
"yargs": "3.32.0"
}
}