-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
104 lines (104 loc) · 3.09 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
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@react-ui/atoms-css-modules",
"version": "1.0.0-beta11",
"description": "Atomic components for React UI styled with CSS Modules",
"keywords": [
"react",
"ui",
"react-ui",
"components"
],
"homepage": "https://github.com/jqestate/react-ui-atoms-css-modules#readme",
"bugs": {
"url": "https://github.com/jqestate/react-ui-atoms-css-modules/issues"
},
"license": "Apache-2.0",
"author": "Evgeny Rodionov <[email protected]> (https://github.com/evgenyrodionov)",
"contributors": [
"Konstantin Grushetsky <[email protected]> (https://github.com/toxickg)",
"Bogdan Tsubeks <[email protected]> (https://github.com/trututu)",
"Evgeniya Molodetskaya <[email protected]> (https://github.com/march213)"
],
"ava": {
"babel": "inherit",
"files": [
"src/**/*.test.js"
],
"require": [
"./test/helpers/setup-test-env.js"
]
},
"nyc": {
"reporter": [
"lcov",
"text",
"html"
]
},
"files": [
"lib",
"src"
],
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/jqestate/react-ui-atoms-css-modules.git"
},
"scripts": {
"cover": "nyc npm run test",
"check-coverage": "nyc check-coverage --statements 80 --branches 80 --functions 80 --lines 80",
"test": "ava",
"watch:test": "npm run test -- --watch",
"watch:cover": "nodemon --quiet --watch app --exec npm run cover -s",
"clean": "rimraf lib",
"build:css": "NODE_ENV=production $(npm bin)/postcss -c postcss.config.json -d lib/styles src/styles/*.css",
"build:js": "NODE_ENV=production $(npm bin)/babel src --out-dir lib",
"build": "npm run build:css && npm run build:js",
"lint": "eslint --ext .jsx --ext .js src",
"check": "npm run lint",
"precommit": "npm run check && npm run cover",
"prepublish": "npm run clean && npm run check && npm run cover && npm run build"
},
"devDependencies": {
"@dtrussia/eslint-config-dtrussia": "2.2.1",
"autoprefixer": "^6.1.2",
"ava": "^0.16.0",
"babel-cli": "6.4.0",
"babel-eslint": "^6.0.4",
"babel-polyfill": "6.9.1",
"babel-preset-es2015": "6.3.13",
"babel-preset-react": "6.3.13",
"babel-preset-stage-0": "6.3.13",
"babel-register": "6.9.0",
"enzyme": "^2.4.1",
"eslint": "^2.10.2",
"eslint-plugin-react": "^5.1.1",
"husky": "0.10.2",
"jsdom": "9.2.1",
"nyc": "^8.1.0",
"postcss-cli": "^2.3.2",
"postcss-color-function": "^2.0.0",
"postcss-conditionals": "^2.0.0",
"postcss-for": "^2.0.1",
"postcss-import": "^7.1.3",
"postcss-loader": "^0.8.0",
"postcss-mathjs": "^1.0.0",
"postcss-nested": "^1.0.0",
"postcss-sassy-mixins": "^1.0.0",
"postcss-simple-vars": "^1.1.0",
"react": "^15.0.0",
"react-addons-test-utils": "15.1.0",
"react-dom": "^15.0.0",
"@react-ui/core": "1.0.0-beta2",
"rimraf": "2.5.4"
},
"dependencies": {
"classnames": "2.2.5",
"react-auto-form": "1.3.0",
"react-maskedinput": "3.0.0"
},
"peerDependecies": {
"@react-ui/core": "1.0.0-beta2",
"react": "0.14.x"
}
}