-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.64 KB
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
{
"name": "ticker-service",
"version": "1.1.0",
"description": "A service used to create animation loops in a simple way and to keep everything in sync within an app.",
"main": "dist/index.js",
"module": "dist/index.modern.js",
"source": "src/index.ts",
"directories": {
"test": "test"
},
"scripts": {
"test": "jest",
"build": "microbundle build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mcastiello/ticker-service.git"
},
"keywords": [
"Ticker",
"Timeout",
"Timing Functions",
"Animation Loop"
],
"author": "Marco Castiello",
"license": "ISC",
"bugs": {
"url": "https://github.com/mcastiello/ticker-service/issues"
},
"homepage": "https://github.com/mcastiello/ticker-service#readme",
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.7.5",
"@types/jest": "^26.0.20",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^7.0.0",
"eslint-config-prettier": "^6.7.0",
"eslint-config-react-app": "^5.2.1",
"eslint-config-standard": "^14.1.0",
"eslint-config-standard-react": "^9.2.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^3.0.0",
"eslint-plugin-sonarjs": "^0.5.0",
"eslint-plugin-spellcheck": "^0.0.14",
"eslint-plugin-standard": "^4.0.1",
"jest": "^26.6.3",
"microbundle": "^0.13.0",
"prettier": "^2.0.4",
"ts-jest": "^26.4.4",
"typescript": "^3.7.5"
}
}