-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·81 lines (81 loc) · 2.7 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
77
78
79
80
81
{
"name": "goodtap",
"version": "0.2.7",
"description": "Tap, Press, Swipe events without all the event handlers",
"main": "goodtap.bundle.js",
"module": "index.js",
"typings": "goodtap.d.ts",
"unpkg": "goodtap.bundle.js",
"files": [
"*"
],
"@std/esm": {
"cjs": true,
"esm": "js"
},
"scripts": {
"install_tools": "npm install && typings install",
"clean": "rimraf ./dist",
"dev": "npm run clean && tsc -p tsconfig.app.json && webpack --env.MODE=development && gulp modifyBundle && gulp copyDTS && gulp copyWebpackExternalsFn",
"build": "npm run clean && tsc -p tsconfig.app.json && webpack --env.MODE=production && gulp modifyBundle && gulp copyDTS && gulp copyWebpackExternalsFn",
"test": "npm run clean && tsc -p tsconfig.test.json && npm run run_test",
"testcoverage": "npm run clean && tsc -p tsconfig-test.json && npm run coveralls",
"run_test": "mocha -r @std/esm ./dist/test/*Test.js",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec ./dist/test/*.js && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"cover": "npm run test && istanbul cover ./node_modules/mocha/bin/_mocha -- ./dist/test/*.js",
"deploy": "gulp package && npm publish dist/lib"
},
"dependencies": {},
"devDependencies": {
"@std/esm": "^0.24.0",
"@types/chai": "^4.0.4",
"@types/jquery": "^3.2.12",
"@types/jsdom": "^11.0.1",
"@types/mocha": "^2.2.42",
"@types/node": "^8.0.24",
"base64-js": "^1.2.3",
"chai": "^3.5.0",
"chalk": "^2.1.0",
"coveralls": "^3.0.2",
"fork-ts-checker-webpack-plugin": "^0.4.1",
"goodcore": "latest",
"gulp": "^4.0.0",
"gulp-debug": "^3.1.0",
"gulp-replace": "^0.6.1",
"gulp-sequence": "^0.4.6",
"happypack": "^5.0.0-beta.1",
"ieee754": "^1.1.9",
"isarray": "^2.0.4",
"istanbul": "^0.4.5",
"jsdom": "^13.0.0",
"karma": "^3.1.1",
"karma-chrome-launcher": "^2.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.1.1",
"karma-mocha-reporter": "^2.1.0",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"natives": "^1.1.6",
"process": "^0.11.10",
"raw-loader": "^0.5.1",
"rimraf": "^2.6.1",
"source-map-support": "^0.4.16",
"ts-loader": "^4.0.1",
"typescript": "^2.7.1",
"webpack": "^4.26.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10",
"webpack-node-externals": "^1.6.0",
"webpack-rxjs-externals": "^1.1.0"
},
"repository": {
"type": "git",
"url": "git://github.com/allnamesrtaken/goodtap.git"
},
"keywords": [
"Typescript",
"Javascript"
],
"author": "Joel Brage",
"license": "MIT"
}