-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 2.37 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
{
"name": "component_d8",
"version": "1.0.0",
"description": "Components with twig support to integrate with Drupal 8.",
"main": "gulpfile.js",
"scripts": {
"clean:file": "rm -rf ./node_modules && rm -rf ./jspm_packages && find htdocs/ui/ -mindepth 1 -maxdepth 1 -type d -not -path 'htdocs/ui/data' | xargs rm -rfv",
"clean": "npm run clean:file",
"install:components": "cd ./jspm_packages/npm/ && dirlist=$(find . -name 'eurostar-*' -type d) && for dir in $dirlist; do echo $dir; cd $dir; npm install; cd ..; done",
"install:basic": "npm run clean && npm install && jspm install && npm run install:components",
"install:prod": "npm run install:basic && ./node_modules/.bin/gulp prod",
"install:dev": "npm run install:basic && ./node_modules/.bin/gulp dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vijaycs85/component_d8.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/vijaycs85/component_d8/issues"
},
"homepage": "https://github.com/vijaycs85/component_d8#readme",
"devDependencies": {
"browser-sync": "2.13.0",
"del": "2.2.0",
"gulp": "3.9.1",
"gulp-autoprefixer": "3.1.0",
"gulp-chug": "0.5.1",
"gulp-combine-media-queries": "0.2.0",
"gulp-file": "0.3.0",
"gulp-flatten": "0.2.0",
"gulp-json-to-yaml": "0.0.2",
"gulp-minify-css": "1.2.4",
"gulp-modernizr": "1.0.0-alpha",
"gulp-rename": "1.2.2",
"gulp-sass": "2.3.2",
"gulp-svg-sprite": "1.3.1",
"gulp-util": "3.0.7",
"gulp-watch": "4.3.6",
"jspm": "0.16.39",
"npm-run-all": "^2.3.0",
"path": "0.12.7",
"run-sequence": "1.2.1",
"sass-jspm-importer": "0.0.6"
},
"jspm": {
"configFile": "jspm.config.js",
"dependencies": {
"breakpoint-sass": "npm:[email protected]",
"eurostar-action": "npm:[email protected]",
"eurostar-base-styles": "npm:[email protected]",
"eurostar-card": "npm:[email protected]",
"eurostar-card-board": "npm:[email protected]",
"normalize-scss": "npm:[email protected]",
"susy": "npm:[email protected]"
},
"devDependencies": {
"babel": "npm:[email protected]",
"babel-runtime": "npm:[email protected]",
"core-js": "npm:[email protected]"
},
"overrides": {
"npm:[email protected]": {
"format": "es6"
}
}
}
}