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
57 lines (57 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.65 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
{
"name": "auth0-styleguide-components",
"version": "0.0.2",
"description": "HTML and CSS components for Auth0 projects.",
"main": "build/core.css",
"style": "build/core.css",
"scripts": {
"prepublish": "(in-publish && exit 1) || (not-in-publish && NODE_ENV=production npm run build)",
"start": "gulp",
"build": "gulp build",
"lint": "npm run lint:js && npm run lint:css",
"lint:js": "eslint .",
"lint:css": "stylelint build/*.css",
"test": "npm run lint"
},
"keywords": [],
"author": "Auth0 (https://auth0.com)",
"homepage": "http://styleguide.auth0.com/",
"repository": "https://github.com/auth0/styleguide/tree/experimental/packages/components",
"license": "UNLICENSED",
"private": true,
"files": [
"build",
"src"
],
"engines": {
"node": "^6.9.1",
"npm": "^3.10.8"
},
"devDependencies": {
"animate.css": "^3.5.2",
"auth0-styleguide-core": "*",
"bump-version": "^0.5.0",
"component-cdn-uploader": "auth0/component-cdn-uploader#1.0.0",
"eslint": "^3.9.0",
"eslint-config-auth0-base": "^6.0.0",
"eslint-plugin-import": "^1.16.0",
"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",
"semver": "^5.3.0",
"stylelint": "^7.5.0",
"stylelint-config-standard": "^14.0.0"
},
"cdn-component": {
"name": "components",
"cdn": "https://cdn.auth0.com",
"mainBundleFile": "components.css",
"remoteBasePath": "styleguide",
"bucket": "assets.us.auth0.com",
"localPath": "build"
}
}