forked from DanmarksAdresser/dawa-autocomplete2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.58 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
73
74
75
76
{
"name": "dawa-autocomplete2",
"version": "1.0.3",
"description": "DAWA Autocomplete komponent",
"main": "dist/js/dawa-autocomplete2.js",
"module": "dist/js/dawa-autocomplete2.es.js",
"author": "Anders Hessellund Jensen",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/DanmarksAdresser/dawa-autocomplete2.git"
},
"scripts": {
"clean": "rimraf dist",
"eslint": "eslint -c .eslintrc.js .",
"rollup": "rollup -c",
"serve": "http-server -p 8080 dist",
"watch": "rollup -c -w",
"karma": "karma start --single-run",
"test-e2e": "mocha --config mocha-config-e2e.json",
"test": "run-s eslint karma test-e2e",
"dev": "run-p -r serve watch",
"copy-demo": "shx mkdir -p dist/html && shx cp html/* dist/html/",
"copy-css": "shx mkdir -p dist/css && shx cp css/* dist/css/",
"ci-test": "start-server-and-test serve http://localhost:8080/html/demo.html test",
"ci": "run-s prepare ci-test",
"deploy-s3": "s3-deploy --cwd ./dist/js --region eu-west-1 --bucket $BUCKET --filePrefix \"assets/dawa-autocomplete2/$npm_package_version\" dist/js/** --gzip --profile $PROFILE"
},
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/polyfill": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@rollup/plugin-commonjs": "^11.0.1",
"@rollup/plugin-node-resolve": "^7.0.0",
"@rollup/plugin-replace": "^2.3.0",
"acorn": "^6.4.0",
"browserstack-local": "^1.4.4",
"chai": "^4.2.0",
"chromedriver": "^2.46.0",
"core-js": "^2.6.11",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"http-server": "^0.11.1",
"incremental-dom": "^0.7.0",
"is-docker": "^1.1.0",
"karma": "^6.3.16",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-rollup-preprocessor": "^7.0.3",
"mocha": "^6.2.2",
"lodash.debounce": "^4.0.8",
"npm-run-all": "^4.1.5",
"puppeteer": "^1.20.0",
"regenerator-runtime": "^0.13.3",
"rimraf": "^2.7.1",
"rollup": "^1.29.1",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-terser": "^5.2.0",
"s3-deploy": "^1.4.0",
"shx": "^0.3.2",
"start-server-and-test": "^1.10.7",
"ts-csp": "^0.9.0",
"unfetch": "^4.1.0",
"webdriver": "5.7.9"
},
"dependencies": {
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0"
}
}