This repository was archived by the owner on Jun 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.81 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.81 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
{
"name": "elements-sk-local",
"version": "2.2.0",
"private": true,
"description": "A set of light-weight custom elements with a uniform style.",
"homepage": "https://github.com/google/skia-buildbot/tree/master/ap/elements-sk",
"license": "Apache-2.0",
"repository": "https://github.com/google/elements-sk.git",
"scripts": {
"clean": "rimraf ./elements-sk ./dist ./src/icon/*.ts ./src/**/*.js ./src/**/*.js.map ./src/**/*.d.ts ./src/**/*.d.ts.map",
"build": "npm run build-icons && npm run build-typescript && npm run build-assets && npm run build-demo-pages",
"build-icons": "go run generate_icons.go",
"build-typescript": "npx tsc",
"build-assets": "rsync -avz src/ elements-sk/",
"build-demo-pages": "npx parcel build --public-url '.' pages/*.html",
"test": "npx karma start --single-run --browsers ChromeHeadless",
"build:ci": "npm ci && npm run clean && npm run build && npm run test"
},
"alias": {
"elements-sk": "./elements-sk"
},
"browserslist": "> 0.5%, last 2 versions, not dead",
"devDependencies": {
"@parcel/optimizer-cssnano": "^2.5.0",
"@parcel/transformer-sass": "^2.5.0",
"@types/chai": "^4.2.11",
"@types/jasmine": "^3.5.10",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.26.0",
"glob": "^7.1.4",
"jasmine": "^3.5.0",
"jsdoc": "^3.6.3",
"karma": "^6.3.19",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-jasmine": "^3.1.1",
"karma-typescript": "^5.0.2",
"material-design-icons": "^3.0.1",
"parcel": "^2.5.0",
"postcss": "^8.4.12",
"postcss-custom-properties": "^12.1.7",
"postcss-import": "^14.1.0",
"postcss-url": "^10.1.3",
"rimraf": "^3.0.2",
"sinon": "^7.3.2",
"typescript": "^3.8.3"
}
}