-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.84 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": "gesture-events",
"library": "Gesture Events",
"version": "1.0.0",
"description": "Test utilities that simulate swipe/tap gestures",
"main": "index.js",
"typings": "index.d.ts",
"scripts": {
"test": "jest",
"dist/js:bundle": "tsc && rollup -c",
"dist/js:minify": "uglifyjs --c --m -o dist/gesture-events.min.js -- dist/gesture-events.js",
"dist/js": "npm-run-all dist/js:*",
"start": "npm run prod",
"watch": "onchange 'src/*.ts' -e 'src/*.d.ts' -- npm run dist/js:bundle",
"dev": "npm run dist/js:bundle && npm run watch",
"prod": "npm run dist/js",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lorenzodianni/gesture-events.git"
},
"author": "Lorenzo D'Ianni <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/lorenzodianni/gesture-events/issues"
},
"homepage": "https://github.com/lorenzodianni/gesture-events#readme",
"keywords": [
"javascript",
"gesture",
"test",
"event",
"swipe",
"tap"
],
"devDependencies": {
"@types/jest": "^22.2.3",
"conventional-changelog-cli": "^1.3.21",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.10.0",
"jest": "^22.4.3",
"npm-run-all": "^4.1.2",
"onchange": "^3.3.0",
"rollup": "^0.57.1",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-node-resolve": "^3.3.0",
"ts-jest": "^22.4.2",
"tslint": "^5.9.1",
"typescript": "^2.8.1",
"uglify-js": "^3.3.20"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
}
}