-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
65 lines (65 loc) · 2.24 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
{
"name": "dawa-autocomplete2",
"version": "1.1.1",
"description": "DAWA Autocomplete komponent",
"main": "dist/js/dawa-autocomplete2.js",
"module": "dist/js/dawa-autocomplete2.es.js",
"author": {
"name": "Styrelsen for Dataforsyning og Infrastruktur",
"email": "support@sdfi.dk",
"url": "https://sdfi.dk/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/SDFIdk/dawa-autocomplete2.git"
},
"bugs": {
"url": "https://github.com/SDFIdk/dawa-autocomplete2/issues"
},
"homepage": "https://github.com/SDFIdk/dawa-autocomplete2#dawa-autocomplete2",
"scripts": {
"clean": "rimraf dist",
"eslint": "eslint -c .eslintrc.js .",
"rollup": "rollup -c",
"serve": "http-server -p 8080 dist",
"watch": "rollup -c -w",
"test-e2e": "mocha --config mocha-config-e2e.json",
"test": "npm run eslint && npm run 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": "npm run clean && npm run rollup && npm run copy-demo && npm run copy-css",
"ci-test": "start-server-and-test serve http://localhost:8080/html/demo.html test",
"ci": "npm run prepare && npm run 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"
},
"dependencies": {
"incremental-dom": "^0.7.0",
"lodash.debounce": "^4.0.8",
"unfetch": "^4.1.0"
},
"devDependencies": {
"@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",
"browserstack-local": "^1.4.4",
"chai": "^4.2.0",
"core-js": "^2.6.11",
"eslint": "^5.16.0",
"http-server": "^14.1.1",
"mocha": "^10.1.0",
"npm-run-all": "^4.1.5",
"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",
"webdriver": "5.7.9"
}
}