-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 1.93 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
{
"name": "wikidata-elements",
"version": "0.1.0",
"description": "Web Component to access data from Wikidata",
"main": "dist/wd-elements.umd.js",
"module": "dist/wd-elements.js",
"types": "index.d.ts",
"license": "MIT",
"repository": "lisongx/wd-elements",
"files": [
"dist",
"index.d.ts"
],
"scripts": {
"prettier": "prettier --write **/*.js",
"dev": "npx live-server --open=examples",
"clean": "rm -rf dist",
"prebuild": "npm run clean && mkdir dist",
"watch": "rollup -c --watch",
"build": "rollup -c",
"pretest": "npm run build",
"test": "karma start karma.config.js --coverage",
"listen-request": "polly listen",
"prepublishOnly": "npm run build",
"ci": "start-server-and-test 'polly listen -q' 3000 'npm run test'"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-transform-modules-umd": "^7.9.0",
"@open-wc/karma-esm": "^2.13.28",
"@open-wc/testing": "^2.5.15",
"@open-wc/testing-helpers": "^1.8.1",
"@open-wc/testing-karma": "^3.3.17",
"@pollyjs/adapter-fetch": "^2.6.3",
"@pollyjs/cli": "^2.6.3",
"@pollyjs/core": "^2.6.3",
"@pollyjs/persister-rest": "^2.6.3",
"babel-preset-github": "^3.2.1",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-plugin-github": "^3.4.1",
"karma": "^4.4.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.3.0",
"lit-element": "^2.3.1",
"rollup": "^1.32.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-resolve": "^5.2.0",
"start-server-and-test": "^1.11.0"
},
"dependencies": {
"dataloader": "^2.0.0",
"setimmediate": "^1.0.5",
"wikibase-sdk": "^7.4.1"
},
"keywords": [
"wikidata",
"web-component",
"custom-element"
]
}