forked from enigma-io/boundless
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.99 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
105
106
107
108
109
110
{
"name": "boundless",
"description": "Accessible, battle-tested, infinitely composable React components.",
"version": "1.1.0",
"author": "Evan Scott <[email protected]> (https://yaycmyk.com)",
"contributors": [
"Abe Rubenstein <[email protected]>",
"Jenn Creighton <[email protected]>"
],
"license": "MIT",
"keywords": [
"react",
"component",
"library",
"toolkit",
"ui"
],
"homepage": "https://boundless.js.org",
"bugs": {
"url": "https://github.com/enigma-io/boundless/issues"
},
"main": "public/boundless.js",
"dependencies": {
"lerna": "2.0.0-beta.37"
},
"devDependencies": {
"autoprefixer-stylus": "^0.13.0",
"babel-eslint": "^7.0.0",
"babel-jest": "^19.0.0",
"babel-loader": "^6.2.10",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-react-docgen": "^1.4.1",
"babel-plugin-transform-class-properties": "^6.6.0",
"babel-plugin-transform-inline-environment-variables": "^6.8.0",
"babel-plugin-transform-react-remove-prop-types": "^0.3.2",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"babel-regenerator-runtime": "^6.5.0",
"chalk": "^1.1.3",
"classnames": "^2.1.5",
"codecov": "^1.0.1",
"css-loader": "^0.27.0",
"eslint": "^3.17.1",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.3.0",
"extract-comments": "^0.10.1",
"extract-text-webpack-plugin": "^2.1.0",
"git-rev-sync": "^1.8.0",
"html-webpack-inline-source-plugin": "0.0.6",
"html-webpack-plugin": "^2.26.0",
"jest-cli": "^19.0.0",
"markdown-to-jsx": "^4.0.0",
"mkdirp": "^0.5.1",
"offline-plugin": "^4.6.1",
"prop-types": "^15.5.10",
"raw-loader": "^0.5.1",
"react": "^15.3.0",
"react-docgen": "^2.13.0",
"react-dom": "^15.3.0",
"react-hot-loader": "^3.0.0-beta.6",
"react-router": "^3.0.2",
"sinon": "^1.17.3",
"sitemap-webpack-plugin": "^0.3.0",
"style-loader": "^0.13.1",
"stylus": "^0.54.2",
"stylus-loader": "^3.0.0",
"webpack": "^2.2.0",
"webpack-dev-server": "^2.2.0"
},
"peerDependencies": {
"prop-types": ">= 15.3",
"react": ">= 15.3",
"react-dom": ">= 15.3"
},
"jest": {
"cacheDirectory": "node_modules/.cache/jest-cli",
"coveragePathIgnorePatterns": [
"/build/",
"/packages/boundless-utils-test-helpers/"
],
"coverageReporters": [
"text",
"cobertura"
],
"testRegex": "\\.spec\\.js$",
"transformIgnorePatterns": [
"/node_modules/(?!boundless).*"
]
},
"scripts": {
"bootstrap": "lerna bootstrap",
"presite": "find docs/* -type d -maxdepth 0 -not -path '*assets' | xargs rm -rf && rm -f docs/index.html && rm -f docs/sitemap.xml && rm -f docs/assets/*.js && rm -f docs/assets/*.css",
"site": "BABEL_ENV=site-production NODE_ENV=production webpack --config scripts/webpack.release.config.js",
"postsite": "node scripts/build-indexes.js",
"build:js:master": "NODE_ENV=production node scripts/build-master.js",
"build:js:packages": "NODE_ENV=production node scripts/build-packages.js",
"build:css": "stylus -m -u autoprefixer-stylus style.styl -o public/skin.css --sourcemap-inline",
"build:css:release": "stylus -c -u autoprefixer-stylus style.styl -o public/skin.min.css",
"lint": "eslint --quiet .",
"test": "jest",
"coverage": "jest --coverage",
"prestart": "npm run bootstrap && npm run presite",
"start": "BABEL_ENV=site-development webpack-dev-server --config scripts/webpack.development.config.js --open --hot",
"prerelease": "npm run bootstrap",
"release": "npm run build:css && npm run build:css:release && npm run build:js:master && npm run build:js:packages && npm run site",
"prepublishOnly": "lerna exec --ignore boundless-utils* -- ln -fs ../../variables.styl variables.styl && npm run release",
"postpublish": "lerna publish --skip-git --repo-version $(node -e \"console.log(require('./package.json').version)\")"
}
}