-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
67 lines (67 loc) · 1.89 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
{
"name": "tcomb-builder",
"version": "5.0.0",
"description": "A declarative syntax for building Tcomb type and options objects",
"main": "dist/index.js",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/cadre/tcomb-builder"
},
"homepage": "https://github.com/cadre/tcomb-builder",
"scripts": {
"lint": "eslint --cache '**/*.js'",
"prepublish": "babel -d dist src",
"test": "NODE_ENV=test mocha --opts mocha.opts 'src/**/__tests__/**/*.js'",
"test:instrument": "NODE_ENV=test nyc --all --cache npm test",
"test:junit": "NODE_ENV=test nyc --all --cache --reporter=cobertura --report-dir=./reports/coverage mocha --opts mocha.opts --reporter mocha-junit-reporter --reporter-options mochaFile=./reports/junit-report.xml 'src/**/__tests__/**/*.js'",
"watch:test": "nodemon -w ./src -e js -x 'npm test'"
},
"files": [
"LICENSE",
"dist",
"package.json"
],
"nyc": {
"exclude": [
"**/__tests__/**/*.js"
]
},
"author": "Cadre <[email protected]>",
"dependencies": {
"immutable": "^3.8.1",
"invariant": "^2.2.0",
"lodash": "^4.17.4",
"moment": "^2.20.1",
"validator": "^8.0.0"
},
"devDependencies": {
"babel-cli": "6.24.1",
"babel-core": "6.25.0",
"babel-eslint": "7.2.3",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"babel-preset-stage-1": "6.24.1",
"chai": "4.1.1",
"chai-as-promised": "7.1.1",
"eslint": "4.4.1",
"eslint-config-airbnb-base": "11.3.1",
"eslint-plugin-babel": "4.1.2",
"eslint-plugin-import": "2.7.0",
"mocha": "3.5.0",
"mocha-junit-reporter": "1.13.0",
"nodemon": "1.11.0",
"nyc": "11.1.0",
"tcomb-validation": "3.4.0"
},
"keywords": [
"form",
"forms",
"validation",
"generation",
"builder"
],
"peerDependencies": {
"tcomb-validation": "^3.4.0"
}
}