forked from vineyard-bloom/bloom-forms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.95 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
{
"name": "bloom-forms",
"version": "0.02.39",
"description": "form functionality used in bloom packages",
"main": "index.js",
"scripts": {
"build": "webpack --config=webpack.config.js",
"test": "npm run test-redux && npm run test-components",
"test-components": "npm run test-form && npm run test-inputs",
"test-form": "mocha -w tests/helpers/virtual-dom.js tests/formTest.js --compilers js:babel-core/register --require ignore-styles",
"test-inputs": "mocha -w tests/helpers/virtual-dom.js tests/inputsTest.js --compilers js:babel-core/register --require ignore-styles",
"test-redux": "mocha tests/reduxTest --compilers js:babel-core/register"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vineyard-bloom/bloom-forms.git"
},
"keywords": [
"bloom",
"vineyard",
"redux",
"react",
"forms"
],
"author": "inkblotty (http://inkblotty.github.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/vineyard-bloom/bloom-forms/issues"
},
"homepage": "https://github.com/vineyard-bloom/bloom-forms#readme",
"dependencies": {
"assert": "^1.4.1",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"css-loader": "^0.28.7",
"enzyme": "^2.9.1",
"file-loader": "^1.1.5",
"ignore-styles": "^5.0.1",
"jsdom": "^11.2.0",
"node-sass": "^4.5.3",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-redux": "^5.0.6",
"react-test-renderer": "^15.6.1",
"redux": "^3.7.2",
"sass-loader": "^6.0.6",
"sinon": "^3.3.0",
"style-loader": "^0.18.2",
"url-loader": "^0.6.2",
"webpack": "^3.6.0"
}
}