forked from foxhound87/mobx-react-form
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.85 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
85
86
87
88
89
90
91
92
{
"name": "mobx-ajv-form",
"license": "MIT",
"version": "0.0.0-semantically-released",
"author": "Claudio Savino <claudio.savino@me.com> (https://twitter.com/foxhound87)",
"description": "Easly manage Forms with MobX and automatic validation with AJV json-schema rules.",
"homepage": "https://www.npmjs.com/package/mobx-ajv-form",
"main": "lib/index.js",
"scripts": {
"clean:lib": "rm -rf lib",
"clean:umd": "rm -rf umd",
"clean:all": "npm run clean:lib && npm run clean:umd",
"clean:modules": "rm -rf ./node_modules && npm cache clean",
"lint": "eslint . --ext .jsx,.js --ignore-path .gitignore",
"build": "npm-run-all --parallel build:*",
"build:main": "babel -d lib/ src/",
"build:umd": "webpack --output-filename index.umd.js",
"build:umdmin": "webpack --output-filename index.umd.min.js -p",
"prebuild": "npm run clean:all",
"commit": "git-cz",
"watch:build": "babel --watch -d lib/ src/",
"watch:test": "npm run test -- -w",
"test": "mocha tests/test.js --compilers js:babel-register",
"cover": "nyc npm test",
"coverage:check": "nyc check-coverage --satements 90 --branches 70 --functions 95 --lines 90",
"coverage:report": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/foxhound87/mobx-ajv-form.git"
},
"keywords": [
"mobx",
"form",
"ajv",
"json",
"schema",
"validation"
],
"files": [
"es6",
"lib",
"umd"
],
"engines": {
"node": ">=4"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "npm run lint && npm run cover"
}
},
"dependencies": {
"ajv": "4.2.0",
"lodash": "4.14.0",
"mobx": "2.4.0",
"path": "0.12.7"
},
"devDependencies": {
"babel-cli": "6.11.4",
"babel-eslint": "6.1.2",
"babel-loader": "6.2.4",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-transform-class-properties": "6.11.5",
"babel-plugin-transform-decorators": "6.8.0",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-transform-es2015-modules-umd": "6.8.0",
"babel-plugin-transform-runtime": "6.9.0",
"babel-preset-es2015": "6.9.0",
"babel-preset-stage-0": "6.5.0",
"chai": "3.5.0",
"codecov": "1.0.1",
"commitizen": "2.8.2",
"cz-conventional-changelog": "1.1.6",
"eslint": "3.1.1",
"eslint-config-airbnb": "9.0.1",
"eslint-plugin-import": "1.11.1",
"eslint-plugin-jsx-a11y": "2.0.1",
"eslint-plugin-react": "5.2.2",
"ghooks": "1.3.2",
"json-loader": "0.5.4",
"mocha": "2.5.3",
"npm-run-all": "2.3.0",
"nyc": "7.1.0-candidate3",
"semantic-release": "4.3.5",
"webpack": "1.13.1"
}
}