-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.4 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.4 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
{
"name": "react-iotacss",
"version": "1.3.1",
"description": "Stateless React Components for iotaCSS.",
"main": "cjs/index.js",
"jsnext:main": "esm/index.js",
"module": "esm/index.js",
"engine": {
"node": ">=6"
},
"scripts": {
"build:cjs": "cross-env BABEL_ENV=cjs babel src --out-dir cjs",
"build:esm": "cross-env BABEL_ENV=esm babel src --out-dir esm",
"build:umd:dev": "cross-env BABEL_ENV=umd NODE_ENV=production webpack --config webpack.config.js",
"build:umd:prod": "cross-env BABEL_ENV=umd NODE_ENV=development webpack --config webpack.config.js",
"build": "npm run build:esm && npm run build:cjs && npm run build:umd:prod && npm run build:umd:dev",
"dev": "cross-env BABEL_ENV=umd webpack-dev-server --config demo/webpack.config.js",
"prepublish": "npm run build",
"test": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iotacss/react-iotacss.git"
},
"keywords": [
"react",
"iotacss",
"harby",
"bem",
"oocss",
"itcss"
],
"files": [
"cjs",
"esm",
"umd"
],
"author": "Dimitris Psaropoulos <info@harby.me>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/iotacss/react-iotacss/issues"
},
"homepage": "https://github.com/iotacss/react-iotacss#readme",
"dependencies": {
"classnames": "^2.2.5",
"prop-types": "^15.5.10"
},
"peerDependencies": {
"react": "^15.0.0-0 || ^16.0.0-0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.24.1",
"babel-jest": "^21.2.0",
"babel-loader": "^7.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.5.1",
"babel-preset-react": "^6.24.1",
"cross-env": "^5.1.0",
"css-loader": "^0.28.3",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.2",
"file-loader": "^1.1.5",
"iotacss": "^1.1.1",
"jest": "^21.2.1",
"node-sass": "^4.5.3",
"path": "^0.12.7",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"sass-loader": "^6.0.5",
"style-loader": "^0.19.0",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.4.5"
},
"jest": {
"setupFiles": [
"<rootDir>/test/support/polyfills.js",
"<rootDir>/test/support/enzyme.js"
]
}
}