This repository has been archived by the owner on Dec 13, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.18 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
{
"name": "ecl-example",
"author": "yhuard",
"license": "EUPL-1.1",
"version": "0.2.1",
"description": "",
"private": true,
"scripts": {
"build:copy": "node ./scripts/copy.js",
"build:scripts": "rollup --config ./rollup.config.js",
"build:styles": "node-sass ./src/styles.scss --include-path node_modules | postcss -c postcss.config.js",
"build": "npm-run-all --parallel build:* -c",
"clean": "rimraf dist",
"dist": "npm run clean && cross-env NODE_ENV=production npm run build",
"lint:js": "eslint .",
"lint:scss": "stylelint './src/**/*.scss'",
"lint": "npm-run-all --parallel lint:* -c",
"release": "node ./scripts/release.js",
"start": "npm-run-all clean build watch",
"travis:deploy": "npm run dist && node ./scripts/travis/releaser.js",
"watch:scripts": "chokidar './src/**/*.js' -c 'eslint {path} && npm run build:scripts'",
"watch:styles": "chokidar './src/**/*.scss' -c 'stylelint {path} || true && npm run build:styles'",
"watch": "npm-run-all --parallel watch:*"
},
"devDependencies": {
"archiver": "1.3.0",
"autoprefixer": "6.7.6",
"babel-eslint": "7.1.1",
"babel-preset-es2015-rollup": "3.0.0",
"chokidar-cli": "1.2.0",
"conventional-github-releaser": "1.1.3",
"cross-env": "3.1.4",
"cssnano": "3.10.0",
"dotenv": "4.0.0",
"eslint": "3.16.1",
"eslint-config-airbnb-base": "11.1.0",
"eslint-plugin-import": "2.2.0",
"fs-extra": "2.0.0",
"gh-release-assets": "1.1.0",
"node-sass": "4.5.0",
"npm-run-all": "4.0.2",
"postcss": "5.2.15",
"postcss-cli": "2.6.0",
"rimraf": "2.6.1",
"rollup": "0.41.4",
"rollup-plugin-babel": "2.7.1",
"rollup-plugin-commonjs": "7.0.0",
"rollup-plugin-node-resolve": "2.0.0",
"rollup-plugin-uglify": "1.0.1",
"simple-git": "1.66.0",
"standard-version": "4.0.0",
"stylelint": "7.9.0",
"stylelint-config-sass-guidelines": "2.0.0",
"stylelint-config-standard": "16.0.0",
"stylelint-selector-bem-pattern": "1.0.0"
},
"dependencies": {
"@ec-europa/europa-component-library": "git+https://github.com/ec-europa/europa-component-library.git#41214b9"
},
"engines": {
"node": ">=6.9.5"
}
}