-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
72 lines (72 loc) · 2.21 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
70
71
72
{
"name": "choicesjs-stencil",
"version": "1.5.1",
"description": "Select and multi-select Web Component using ChoicesJS library as core",
"repository": {
"type": "git",
"url": "https://github.com/adidas/choicesjs-stencil.git"
},
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/types/components.d.ts",
"collection": "dist/collection/collection-manifest.json",
"scripts": {
"start": "stencil build --dev --watch --serve",
"clean": "npm run clean:dist && npm run clean:doc && npm run clean:example && npm run clean:test",
"clean:dist": "rimraf dist && rimraf src/components.d.ts",
"clean:doc": "rimraf docs",
"clean:example": "rimraf example",
"clean:test": "rimraf test/results",
"build": "npm run build:min",
"build:dev": "stencil build --dev --watch",
"build:min": "stencil build",
"example": "copy ./index.html assets/* dist/* dist/**/* example",
"doc": "typedoc --mode file --readme ./README.md --out ./docs ./src",
"lint": "npm run lint:src && npm run lint:test",
"lint:src": "tslint --config ./tslint.json --project ./tsconfig.json",
"lint:test": "tslint --config ./tslint.json --project ./test/tsconfig.json",
"test": "npm run test:unit",
"test:unit": "jest --no-cache --config jest.config.js",
"test:coverage": "npm run test:coverage:unit",
"test:coverage:unit": "npm run test:unit -- --coverage"
},
"peerDependencies": {
"choices.js": "^9.0"
},
"devDependencies": {
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@stencil/core": "1.12.7",
"@stencil/sass": "1.3.1",
"@stencil/utils": "0.0.5",
"@types/jest": "25.2.1",
"choices.js": "9.0.1",
"copy": "0.3.2",
"jest": "25.5.2",
"jest-dot-reporter": "1.0.14",
"rimraf": "3.0.2",
"tslint": "6.1.2",
"tslint-config-adidas": "1.0.1",
"tslint-eslint-rules": "5.4.0",
"typedoc": "0.17.6",
"workbox-build": "5.1.3"
},
"optionalDependencies": {
"fsevents": "2.1.3 "
},
"keywords": [
"choicesjs",
"select",
"stenciljs",
"web-component"
],
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
}
}