forked from dleitee/valid.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.44 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
{
"name": "valid.js",
"version": "1.2.2",
"description": "A simple library for data validation",
"scripts": {
"prepublish": "npm test && gulp",
"test": "mocha --compilers js:babel-register",
"test:lint": "eslint ./src ./test",
"test:coverage": "./node_modules/.bin/babel-node ./node_modules/.bin/babel-istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- -R spec",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/dleitee/valid.js.git"
},
"main": "dist/validate.js",
"keywords": [
"javascript",
"es6",
"library",
"validate"
],
"author": {
"name": "Daniel Leite de Oliveira",
"email": "dleitee@gmail.com",
"url": "github.com/dleitee"
},
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-core": "^6.7.6",
"babel-istanbul": "^0.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.7.2",
"babelify": "^7.2.0",
"browserify": "^11.2.0",
"coveralls": "^2.11.9",
"deglobalify": "^0.2.0",
"es6ify": "^1.6.0",
"eslint": "^2.12.0",
"expect.js": "^0.3.1",
"gulp": "^3.9.0",
"gulp-connect": "^2.2.0",
"gulp-jshint": "^1.11.2",
"gulp-uglify": "^1.4.1",
"mocha": "^2.3.3",
"mocha-lcov-reporter": "^1.2.0",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
}
}