forked from teslamotors/informed
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.66 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 3.66 KB
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "informed",
"version": "1.10.8",
"description": "A lightweight framework and utility for building powerful forms in React applications",
"main": "dist/index.js",
"types": "index.d.ts",
"files": [
"dist/"
],
"scripts": {
"start": "webpack-dev-server -d --config webpack.dev.config.js --port 4004 --hot",
"build": "webpack -p --config ./config/webpack/webpack.dist.config.js",
"test": "mocha-webpack --opts tests/mocha-webpack.opts",
"test:watch": "npm run test -- --watch",
"pretest": "patch-package",
"preversion": "npm run test:coverage",
"version": "npm run build",
"postversion": "git push",
"postpublish": "git push --tags",
"precommit": "pretty-quick --staged",
"storybook": "start-storybook -p 9001 -c .storybook",
"storybook:docs": "build-storybook -c .storybook -o docs",
"prettier": "prettier --write 'src/**/*.{js,md}' 'tests/**/*.{js,md}' 'stories/**/*.{js,md}'",
"pretty-quick": "pretty-quick",
"lint:fix": "eslint src/** tests/** stories/** --fix",
"coveralls": "NODE_ENV=spec nyc npm test && nyc report --reporter=text-lcov | coveralls",
"test:coverage": "NODE_ENV=spec nyc mocha-webpack --exit --opts tests/mocha-webpack.opts",
"test:coverage-html": "NODE_ENV=spec nyc --reporter=html mocha-webpack --exit --opts tests/mocha-webpack.opts && http-server coverage -o -p 8007"
},
"repository": {
"type": "git",
"url": "https://github.com/joepuzzo/informed.git"
},
"author": {
"name": "Joseph Puzzo",
"email": "jgpuzzo2@gmail.com",
"url": "http://joepuzzo.github.io"
},
"keywords": [
"react",
"reactjs",
"redux",
"react-redux",
"redux-form",
"form",
"react-form",
"async",
"async-form",
"asynchronous-form",
"asynchronous"
],
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.0.0-rc.1",
"@babel/plugin-proposal-class-properties": "^7.0.0-rc.1",
"@babel/plugin-transform-runtime": "^7.0.0-rc.1",
"@babel/preset-env": "^7.0.0-rc.1",
"@babel/preset-react": "^7.0.0-rc.1",
"@storybook/addon-options": "^3.4.10",
"@storybook/addons": "^4.0.0-alpha.13",
"@storybook/react": "^4.0.0-alpha.13",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "^8.0.0-beta.4",
"babel-plugin-emotion": "^9.2.6",
"babel-plugin-macros": "^2.4.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"chai": "^4.1.2",
"core-js": "^2.5.7",
"coveralls": "^3.0.2",
"css-loader": "^1.0.0",
"enzyme": "^3.4.1",
"enzyme-adapter-react-16": "^1.2.0",
"eslint": "^5.3.0",
"eslint-plugin-react": "^7.10.0",
"html-loader": "^0.5.5",
"istanbul-instrumenter-loader": "^3.0.1",
"jsdom": "^11.12.0",
"markdown-loader": "^3.0.0",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"mocha-webpack": "^2.0.0-beta.0",
"nyc": "^12.0.2",
"patch-package": "^5.1.1",
"prettier": "1.14.2",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-prism": "^4.3.2",
"sass-loader": "^7.1.0",
"sinon": "^6.1.5",
"storybook-readme": "^3.3.0",
"style-loader": "^0.22.1",
"universal-dotenv": "^1.8.3",
"webpack": "^4.16.5",
"webpack-bundle-analyzer": "^3.0.2",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"@babel/runtime-corejs2": "^7.0.0-rc.1"
},
"peerDependencies": {
"react": "^16.0.0"
},
"nyc": {
"instrument": false,
"sourceMap": false,
"include": [
"src/**/*.js"
],
"exclude": [
"config",
"tests",
"src/index.js"
]
}
}