forked from chimpanzees/styleguide
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.49 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 3.49 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
{
"name": "auth0-styleguide-react-components",
"version": "0.0.3",
"description": "",
"main": "build/react-components.js",
"jsnext:main": "build/react-components.es.js",
"module": "build/react-components.es.js",
"style": "build/react-components.css",
"scripts": {
"prepublish": "(in-publish && exit 1) || (not-in-publish && NODE_ENV=production npm run build)",
"build": "npm run build:docs && npm run build:js && npm run build:css",
"build:docs": "node ./tools/tasks/generate-docs.js",
"build:js": "npm run build:js:umd-es && npm run build:js:lib",
"build:js:umd-es": "rollup -c tools/rollup/rollup.config.js && rollup -c tools/rollup/rollup.config.js --environment PRODUCTION",
"build:js:lib": "babel src -d lib",
"build:css": "gulp styles",
"start": "start-storybook -p 9001 -c .storybook",
"lint": "npm run lint:js && npm run lint:css",
"lint:js": "eslint .",
"lint:css": "stylelint build/*.css",
"test": "npm run lint && mocha \"src/**/*.test.js\" --require test/setup.js --compilers js:babel-register"
},
"keywords": [],
"author": "Auth0 (https://auth0.com)",
"license": "UNLICENSED",
"private": true,
"files": [
"build",
"lib"
],
"engines": {
"node": "^6.9.1",
"npm": "^3.10.8"
},
"peerDependencies": {
"react": "^15.0.0",
"react-bootstrap": "^0.30.6"
},
"devDependencies": {
"@kadira/react-storybook-decorator-centered": "^1.0.0",
"@kadira/storybook": "^2.27.0",
"auth0-styleguide-core": "*",
"autoprefixer": "^6.5.0",
"babel-cli": "^6.18.0",
"babel-core": "^6.17.0",
"babel-eslint": "^7.0.0",
"babel-plugin-external-helpers": "^6.18.0",
"babel-plugin-inline-json-import": "^0.1.6",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.16.3",
"bump-version": "^0.5.0",
"chai": "^3.5.0",
"component-cdn-uploader": "auth0/component-cdn-uploader#1.0.0",
"conventional-changelog-cli": "^1.2.0",
"css-loader": "^0.25.0",
"enzyme": "^2.5.1",
"eslint": "^3.7.1",
"eslint-config-airbnb": "^10.0.1",
"eslint-config-auth0": "^6.0.1",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.3.0",
"extract-text-webpack-plugin": "^1.0.1",
"gulp": "github:gulpjs/gulp#c120a94",
"gulp-autoprefixer": "^3.1.1",
"gulp-cssnano": "^2.1.2",
"gulp-load-plugins": "^1.3.0",
"gulp-rename": "^1.2.2",
"gulp-stylus": "^2.5.0",
"in-publish": "^2.0.0",
"lodash": "^4.16.4",
"mocha": "^3.1.2",
"poststylus": "^0.2.3",
"react": "^15.3.2",
"react-addons-test-utils": "^15.3.2",
"react-bootstrap": "^0.30.6",
"react-docgen": "^2.11.0",
"react-dom": "^15.3.2",
"rollup": "^0.36.3",
"rollup-plugin-babel": "^2.6.1",
"rollup-plugin-commonjs": "^5.0.5",
"rollup-plugin-json": "^2.0.2",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-plugin-replace": "^1.1.1",
"rollup-plugin-uglify": "^1.0.1",
"style-loader": "^0.13.1",
"stylelint": "^7.5.0",
"stylelint-config-standard": "^14.0.0",
"stylus": "^0.54.5",
"stylus-loader": "^2.3.1"
},
"cdn-component": {
"name": "react-components",
"cdn": "https://cdn.auth0.com",
"mainBundleFile": "react-components.js",
"remoteBasePath": "styleguide",
"bucket": "assets.us.auth0.com",
"localPath": "build"
},
"dependencies": {
"jquery": "^3.1.1"
}
}