forked from DannyMoerkerke/custom-element
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.22 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
{
"name": "@dannymoerkerke/custom-element",
"version": "1.0.0",
"description": "Web Components base class which provides data binding and convenience methods",
"main": "dist/custom-element.js",
"module": "dist/custom-element.es.js",
"unpkg": "dist/custom-element.umd.js",
"scripts": {
"start": "ws -p 8080 --spa demo/index.html",
"prebuild": "rm -rf dist",
"build": "rollup -c",
"prepare": "npm run build",
"test": "ws -p 8080 --spa test/index.html",
"test:headless": "concurrently \"npm test\" \"sleep 1 && mocha-headless-chrome -f http://localhost:8080/\""
},
"author": "Danny Moerkerke <[email protected]>",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:DannyMoerkerke/custom-element.git"
},
"homepage": "https://github.com/DannyMoerkerke/custom-element",
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"directories": {
"test": "test"
},
"license": "ISC",
"devDependencies": {
"chai": "^4.2.0",
"concurrently": "^4.1.0",
"local-web-server": "^2.6.1",
"mocha": "^6.2.0",
"mocha-headless-chrome": "^2.0.3",
"rollup": "^1.19.4",
"rollup-plugin-babel-minify": "^9.1.0",
"sinon": "^7.3.1"
}
}