-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
84 lines (84 loc) · 3.39 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "partial.lenses.validation",
"version": "2.0.0",
"description": "Partial Lenses Validation is a JavaScript library for validating and transforming data",
"module": "dist/partial.lenses.validation.es.js",
"main": "dist/partial.lenses.validation.cjs.js",
"sideEffects": false,
"scripts": {
"dist": "rollup -c && cp dist/partial.lenses.validation.js docs/",
"docs": "klipse-github-docs-generator",
"lint": "eslint src test",
"prepare": "npm run lint && npm run docs && npm run dist && npm run test",
"report-coverage": "nyc report --reporter=lcov > coverage.lcov && codecov",
"test": "nyc mocha && nyc report -r html mocha",
"watch": "concurrently \"npm run watch:dist\" \"npm run watch:docs\" \"npm run watch:test\"",
"watch:dist": "watch-run -d 50 -i -p 'src/**/*.js' npm run dist",
"watch:docs": "watch-run -d 50 -i -p '*.md' npm run docs & livereload docs & wait",
"watch:test": "watch-run -d 50 -p 'dist/partial.lenses.validation.cjs.js,test/*.js' npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/calmm-js/partial.lenses.validation.git"
},
"keywords": [
"structural",
"json",
"validation",
"transform",
"contracts",
"asynchronous"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/calmm-js/partial.lenses.validation/issues"
},
"homepage": "https://github.com/calmm-js/partial.lenses.validation#readme",
"dependencies": {
"infestines": "^0.4.10",
"partial.lenses": "^14.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.1",
"babel-plugin-annotate-pure-calls": "^0.4.0",
"babel-plugin-check-es2015-constants": "^6.22.0",
"babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
"babel-plugin-transform-es2015-block-scoped-functions": "^6.22.0",
"babel-plugin-transform-es2015-block-scoping": "^6.26.0",
"babel-plugin-transform-es2015-classes": "^6.24.1",
"babel-plugin-transform-es2015-computed-properties": "^6.24.1",
"babel-plugin-transform-es2015-destructuring": "^6.23.0",
"babel-plugin-transform-es2015-duplicate-keys": "^6.24.1",
"babel-plugin-transform-es2015-for-of": "^6.23.0",
"babel-plugin-transform-es2015-function-name": "^6.24.1",
"babel-plugin-transform-es2015-literals": "^6.22.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-plugin-transform-es2015-object-super": "^6.24.1",
"babel-plugin-transform-es2015-parameters": "^6.24.1",
"babel-plugin-transform-es2015-shorthand-properties": "^6.24.1",
"babel-plugin-transform-es2015-spread": "^6.22.0",
"babel-plugin-transform-es2015-sticky-regex": "^6.24.1",
"babel-plugin-transform-es2015-template-literals": "^6.22.0",
"babel-plugin-transform-es2015-unicode-regex": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-register": "^6.26.0",
"codecov": "^3.1.0",
"concurrently": "^4.1.0",
"eslint": "^5.12.0",
"klipse-github-docs-generator": "^0.3.8",
"livereload": "^0.7.0",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"ramda": "^0.26.1",
"rollup": "^1.0.1",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-uglify": "^6.0.0",
"sprintf-js": "^1.1.2",
"uglify-js": "^3.4.9",
"watch-run": "^1.2.5"
}
}