forked from hyperform/hyperform
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.22 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.22 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "hyperform",
"version": "0.9.6",
"description": "Capture form validation back from the browser",
"main": "dist/hyperform.cjs.js",
"jsnext:main": "src/hyperform.js",
"module": "src/hyperform.js",
"style": "css/hyperform.css",
"scripts": {
"test": "jshint src && ava",
"preversion": "npm test",
"version": "make version VERSION=$npm_package_version && make all && git add src/version.js dist/ bower.json",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hyperform/hyperform.git"
},
"keywords": [
"html5",
"form",
"forms",
"input",
"validation"
],
"author": "Manuel Strehl",
"license": "MIT",
"bugs": {
"url": "https://github.com/hyperform/hyperform/issues"
},
"homepage": "https://hyperform.js.org/",
"devDependencies": {
"ava": "^0.18.1",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-2": "^6.22.0",
"babel-register": "^6.7.2",
"jsdom": "^9.10.0",
"jshint": "^2.9.1",
"jspm": "0.17.0-beta.13",
"karma": "^1.4.1",
"karma-chrome-launcher": "^2.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-sauce-launcher": "^1.1.0",
"mocha": "^3.2.0",
"selenium-webdriver": "^3.0.1",
"uglify-js": "^2.6.2"
},
"files": [
"css",
"dist",
"src"
],
"jshintConfig": {
"esversion": 6,
"strict": "global",
"laxbreak": true,
"globals": {
"window": true,
"document": true
}
},
"ava": {
"require": [
"babel-register",
"./test/helpers/setup-browser-env.js"
],
"files": [
"test/unit/**/*.js"
],
"babel": "inherit",
"concurrency": 5
},
"babel": {
"presets": [
"es2015",
"stage-2"
]
},
"jspm": {
"dependencies": {},
"devDependencies": {
"plugin-babel": "npm:systemjs-plugin-babel@^0.0.9"
},
"buildConfig": {
"transpileES6": true,
"minify": true
},
"peerDependencies": {
"core-js": "npm:core-js@^1.2.0",
"fs": "github:jspm/nodelibs-fs@^0.2.0-alpha",
"path": "github:jspm/nodelibs-path@^0.2.0-alpha",
"process": "github:jspm/nodelibs-process@^0.2.0-alpha"
}
}
}