-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.76 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": "color-your-code",
"version": "0.0.0",
"license": "MIT",
"homepage": "https://color-your-code.firebaseapp.com/",
"dependencies": {
"@kuscamara/code-sample": "^3.0.0",
"@polymer/iron-icon": "git+https://[email protected]/kcmr/iron-icon.git#6118aae36db7",
"@polymer/iron-iconset-svg": "^3.0.0-pre.21",
"animejs": "^2.2.0",
"lit-element": "^2.1.0"
},
"devDependencies": {
"@webcomponents/webcomponentsjs": "^2.0.4",
"autoprefixer": "^8.2.0",
"browser-sync": "^2.23.6",
"del": "^3.0.0",
"eslint": "^4.18.2",
"eslint-config-google": "^0.7.0",
"eslint-plugin-html": "^3.0.0",
"fancy-log": "^1.3.2",
"gulp": "^3.9.1",
"gulp-csslit": "^1.0.1",
"gulp-eslint": "^4.0.2",
"gulp-postcss": "^7.0.1",
"gulp-rename": "^1.4.0",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"portfinder": "^1.0.13",
"postcss-pixels-to-rem": "^0.8.0",
"pre-push": "^0.1.1",
"wct-browser-legacy": "^1.0.1",
"wct-istanbul": "~0.14.3",
"web-component-tester": "^6.7.1",
"yogui": "^0.2.0"
},
"scripts": {
"lint": "npm run lint:javascript && polymer lint",
"lint:javascript": "gulp build:dist && eslint . --ext js,html --fix",
"test": "gulp build:dist && wct --module-resolution=node --npm",
"test:integration": "polymer build # test that psk builds without error with the CLI",
"serve:dev": "gulp serve",
"start": "gulp serve",
"create:element": "yogui",
"build": "gulp build:dist && polymer build"
},
"lint-staged": {
"src/**/*.js": [
"npm run lint:javascript",
"git add"
],
"*.html": [
"npm run lint:javascript",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
}
}