forked from DanmarksAdresser/dawa-autocomplete2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.59 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
{
"name": "dawa-autocomplete2",
"version": "1.0.1",
"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/",
"prepare": "run-s clean rollup copy-demo copy-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/dawa-autocomplete2*.js --gzip --profile $PROFILE"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/plugin-transform-runtime": "^7.4.3",
"@babel/polyfill": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"acorn": "^6.1.1",
"browserstack-local": "^1.3.7",
"chai": "^4.2.0",
"chromedriver": "^2.46.0",
"core-js": "^2.6.5",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"http-server": "^0.11.1",
"incremental-dom": "^0.6.0",
"is-docker": "^1.1.0",
"karma": "^4.0.1",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-rollup-preprocessor": "^7.0.0",
"mocha": "^6.1.4",
"npm-run-all": "^4.1.5",
"puppeteer": "^1.14.0",
"regenerator-runtime": "^0.13.1",
"rimraf": "^2.6.3",
"rollup": "^1.10.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^4.2.3",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^4.0.4",
"s3-deploy": "^1.3.0",
"shx": "^0.3.2",
"start-server-and-test": "^1.7.13",
"ts-csp": "^0.9.0",
"unfetch": "^4.1.0",
"webdriver": "5.7.9"
}
}