-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.08 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "bejs",
"version": "2.0.1",
"description": "Simple, light-weight assertions framework for javascript",
"homepage": "https://be.js.org",
"main": "index.js",
"browser": "dist/be.js",
"scripts": {
"version:major": "webpack --env.major && npm run-script doc && version-to-tag.sh && npm publish",
"version:minor": "webpack --env.minor && npm run-script doc && version-to-tag.sh && npm publish",
"version:patch": "webpack --env.patch && npm run-script doc && version-to-tag.sh && npm publish",
"build": "webpack --progress",
"doc": "./node_modules/.bin/jsdoc --configure .jsdoc.json --verbose",
"test": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"keywords": [
"asserts",
"assertions",
"test",
"is",
"boolean",
"url",
"number",
"string",
"email",
"object",
"check",
"float",
"alphanumeric",
"mocha",
"testing",
"validation",
"test unit",
"valid",
"type"
],
"author": {
"name": "Fabio Ricali",
"email": "[email protected]"
},
"contributors": [
{
"name": "Davide Polano",
"email": "[email protected]"
}
],
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"coveralls": "^2.13.1",
"docdash": "^0.4.0",
"istanbul": "^0.4.5",
"jsdoc": "^3.5.5",
"jsdom": "^11.2.0",
"koa": "^2.3.0",
"minami": "^1.2.3",
"mocha": "^3.5.0",
"mocha-lcov-reporter": "^1.3.0",
"request": "^2.81.0",
"unminified-webpack-plugin": "^1.2.0",
"webpack": "^3.5.5",
"webpack-auto-inject-version": "^0.5.14"
},
"repository": {
"type": "git",
"url": "https://github.com/fabioricali/beJS"
}
}