-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 962 Bytes
/
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
{
"name": "itsa",
"version": "2.1.189",
"description": "JavaScript data validation",
"keywords": [
"validation",
"schema",
"typescript"
],
"main": "dist/itsa.js",
"types": "dist/types/itsa.d.ts",
"scripts": {
"coverage": "rm -rf .coverage/* && nyc mocha",
"test": "mocha --reporter utils/reporter.js --parallel --exit",
"test-one": "mocha --reporter utils/reporter.js src -g",
"build": "node utils/build",
"bump-patch": "rake bumppatch",
"release": "rake release"
},
"pre-commit": [
"bump-patch"
],
"author": "Josh Wright <josh@joshwright.com> (https://www.joshwright.com/)",
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "7.14.2",
"@types/assert": "1.5.4",
"babel-loader": "8.2.2",
"mocha": "8.3.2",
"nyc": "15.1.0",
"pre-commit": "1.2.2",
"source-map-loader": "2.0.1",
"ts-node": "9.1.1",
"typescript": "4.2.4",
"webpack": "5.37.0"
}
}