forked from axa-ch/web-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
161 lines (161 loc) · 6.51 KB
/
package.json
File metadata and controls
161 lines (161 loc) · 6.51 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
{
"name": "@axa/web-toolkit",
"version": "2.0.0-alpha.3",
"description": "The CSS, JS and HTML framework for building responsive AXA web apps!",
"author": "AXA",
"license": "SEE LICENSE IN LICENSE",
"homepage": "https://design.axa.com/toolkit",
"homepageDesinGuidelines": "https://design.axa.com/",
"homepageWebGuidelines": "https://design.axa.com/web-guidelines/introduction",
"releasesUrl": "https://github.com/axa-group/web-toolkit/releases",
"distArchive": "https://github.com/axa-group/web-toolkit/releases/download/v{tag}/web-toolkit-v{tag}-dist.zip",
"sourceArchive": "https://github.com/axa-group/web-toolkit/archive/v{tag}.zip",
"bootstrapDocs": "http://v4-alpha.getbootstrap.com",
"npmjsPackage": "https://www.npmjs.com/package/@axa/web-toolkit",
"cdnCss": "https://unpkg.com/@axa/web-toolkit@{tag}/dist/bundles/all.css",
"cdnJs": "https://unpkg.com/@axa/web-toolkit@{tag}/dist/bundles/all.js",
"slackTeam": "https://axa-bb1.slack.com/signup",
"slackWebGuidelines": "https://web-guidelines.slack.com/messages/general/details/",
"keywords": [
"axa",
"insurance",
"group",
"web",
"toolkit",
"framework",
"html",
"css",
"js",
"styleguide"
],
"bugs": {
"url": "https://github.com/axa-group/web-toolkit/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/axa-group/web-toolkit.git"
},
"title": "AXA Web Toolkit",
"copyline": "Copyright 2017 AXA",
"main": "dist/js/index.js",
"scripts": {
"dev": "better-npm-run dev",
"dev:watch-docs": "better-npm-run dev:watch-docs",
"build": "better-npm-run build",
"start": "babel-node lib/server.js",
"lint": "sass-lint -v",
"docs:build": "babel-node lib/build-docs.js",
"docs:build:delayed": "sleep 3 && npm run docs:build",
"docs:build:copy:all:before": "npm run all:copy && npm run docs:build",
"bundles:watch": "babel-node webpack/browsersync-dev-server.js",
"bundles:build": "webpack --verbose --display-modules --colors --display-error-details --config webpack/bundle.config.babel.js",
"bundles:copy": "sync-files --no-notify-update dist/bundles docs/dist",
"images:watch": "sync-files --no-notify-update --watch images docs/images2",
"images:copy": "sync-files --no-notify-update images docs/images2",
"scss:watch": "sync-files --no-notify-update --watch scss docs/scss2",
"scss:copy": "sync-files --no-notify-update scss docs/scss2",
"js:transpile": "babel js -d dist/js",
"js:watch": "sync-files --no-notify-update --watch js docs/js2",
"js:copy": "sync-files --no-notify-update js docs/js2",
"all:watch": "concurrently --kill-others \"npm run images:watch\" \"npm run scss:watch\" \"npm run js:watch\" \"npm run bundles:watch\" --names images:watch,scss:watch,js:watch,bundles:watch --prefix-colors cyan,magenta,blue,yellow --prefix [{name}]",
"all:copy": "concurrently \"npm run images:copy\" \"npm run scss:copy\" \"npm run js:copy\" \"npm run bundles:copy\" --names images:copy,scss:copy,js:copy,bundles:copy --prefix-colors cyan,magenta,blue,yellow --prefix [{name}]",
"bootstrap:scss:copy": "sync-files --no-notify-update node_modules/bootstrap/scss scss/bootstrap",
"bootstrap:js:copy": "sync-files --no-notify-update node_modules/bootstrap/js/src js/jquery/bootstrap",
"bootstrap:js:fix": "find js/jquery/bootstrap -type f -exec sed -i '' -e '1s/^/import jQuery from \"jquery\"\\'$'\\n/g' {} \\;",
"release:dist:zip": "bestzip web-toolkit-v$npm_package_version-dist.zip dist/bundles/*"
},
"betterScripts": {
"dev": {
"command": "concurrently --kill-others \"npm run all:watch\" \"npm run docs:build:delayed\" --names all:watch,docs:build --prefix-colors cyan,magenta --prefix [{name}]",
"env": {
"NODE_ENV": "development"
}
},
"build": {
"command": "npm run bundles:build && concurrently \"npm run docs:build:copy:all:before\" \"npm run js:transpile\" --names docs,js:transpile --prefix-colors cyan,magenta --prefix [{name}]",
"env": {
"NODE_ENV": "production"
}
}
},
"dependencies": {
"tether": "^1.4.0"
},
"devDependencies": {
"autoprefixer": "^6.4.1",
"babel-cli": "^6.14.0",
"babel-core": "^6.2.1",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.5",
"babel-plugin-transform-class-properties": "^6.10.2",
"babel-plugin-transform-es2015-destructuring": "^6.9.0",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.1.18",
"babel-register": "^6.14.0",
"baconjs": "^0.7.73",
"bestzip": "^1.1.3",
"better-npm-run": "0.0.11",
"bootstrap": "4.0.0-alpha.6",
"browser-sync": "^2.16.0",
"cheet.js": "^0.3.3",
"clean-webpack-plugin": "^0.1.10",
"clipboard": "^1.5.15",
"colors": "^1.1.2",
"concurrently": "^2.2.0",
"css-loader": "^0.25.0",
"css-mqpacker": "^5.0.1",
"csswring": "^5.1.0",
"eslint": "^3.4.0",
"eslint-config-airbnb": "^11.0.0",
"eslint-config-airbnb-base": "^7.0.0",
"eslint-plugin-import": "^1.14.0",
"express": "^4.14.0",
"extract-text-webpack-plugin": "^1.0.1",
"front-matter": "^1.0.0",
"handlebars": "^4.0.5",
"happypack": "^2.2.1",
"highlight.js": "^9.8.0",
"iframe-resizer": "^2.8.10",
"jquery": "^2.1.3",
"jsdoc-babel": "^0.2.1",
"jsdoc-to-markdown": "^2.0.0-alpha.15",
"json-loader": "^0.5.4",
"lodash": "^3.10.1",
"lunr": "^0.5.9",
"metalsmith": "^1.0.1",
"metalsmith-branch": "0.0.4",
"metalsmith-copy": "^0.2.1",
"metalsmith-define": "1.0.0",
"metalsmith-drafts": "0.0.1",
"metalsmith-filepath": "^1.0.1",
"metalsmith-ignore": "^0.1.2",
"metalsmith-in-place": "^1.4.4",
"metalsmith-layouts": "^1.6.5",
"metalsmith-lunr": "^0.2.1",
"metalsmith-relative": "^1.0.3",
"metalsmith-watch": "^1.0.3",
"multimatch": "^2.1.0",
"node-sass": "^3.10.0",
"node-uuid": "^1.4.7",
"object-fit-polyfill": "^0.1.0",
"open": "0.0.5",
"postcss-loader": "^0.13.0",
"postcss-pseudoelements": "^3.0.0",
"sass-lint": "^1.9.1",
"sass-loader": "^4.0.2",
"sassdoc": "^2.1.20",
"serve-static": "^1.11.1",
"slick-carousel": "^1.6.0",
"slug": "^0.9.1",
"strip-loader": "^0.1.2",
"style-loader": "^0.13.1",
"svg4everybody": "^2.1.0",
"sync-files": "^1.0.3",
"webpack": "^1.13.2",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.12.2",
"webpack-module-hot-accept": "^1.0.4",
"webpack-svgstore-plugin": "^3.0.4"
}
}