-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.42 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.42 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
{
"name": "@pageclip/valid-form",
"version": "1.1.1",
"description": "HTML5 form validation helpers",
"main": "index.js",
"scripts": {
"test": "npm test",
"clean": "rm -rf dist && mkdir -p dist",
"build": "npm run clean && npm run build-browser && npm run minify",
"build-browser": "browserify index-browser.js -o dist/valid-form.js -t [ babelify ]",
"minify": "uglifyjs dist/valid-form.js -o dist/valid-form.min.js",
"site": "python -m SimpleHTTPServer 8080"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pageclip/valid-form.git"
},
"keywords": [
"html5",
"form",
"validation"
],
"author": "ogle.ben@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/Pageclip/valid-form/issues"
},
"homepage": "https://github.com/Pageclip/valid-form#readme",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"babelify": "^8.0.0",
"browserify": "^16.1.0",
"concurrently": "^3.5.0",
"eslint": "^4.7.2",
"eslint-plugin-import": "^2.7.0",
"standard": "^10.0.3",
"standard-own": "^1.0.2",
"uglify-js": "^3.3.11"
},
"standard-own": {
"eslintConfig": {
"configFile": "./.eslintrc.js"
}
}
}