-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.4 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.4 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
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
82
83
84
85
86
87
88
89
90
91
{
"name": "@helpscout/motion",
"version": "0.0.8",
"description": "A simple animation library for React",
"main": "dist/index.js",
"private": false,
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"add-contributor": "zero contributors add",
"prestart": "zero prestart",
"build:ts": "tsc",
"build:postclean": "rm -rf dist/__tests__",
"build": "npm run clean && npm run build:ts && npm run build:postclean",
"clean": "rm -rf dist",
"lint": "zero lint",
"dev": "zero test --watchAll",
"format": "zero format",
"precommit": "zero pre-commit",
"coverage": "nyc report --temp-directory=coverage --reporter=text-lcov | coveralls",
"release": "np --no-yarn --yolo",
"version": "npm run build",
"start": "npm run storybook",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"prettier": "prettier \"src/**/*.{js,ts,tsx}\" --write",
"pretty": "npm run prettier"
},
"author": "Jon Quach <hello@jonquach.com> (https://jonquach.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/helpscout/motion.git"
},
"bugs": {
"url": "https://github.com/helpscout/motion/issues"
},
"keywords": [
"motion",
"animation",
"animate",
"fps",
"performance",
"engine",
"react"
],
"engines": {
"node": ">=8"
},
"peerDependencies": {
"react": "^16 || ^15"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@helpscout/fancy": "^2.2.4",
"@helpscout/helix": "^0.1.0",
"@helpscout/hsds-react": "^2.6.2",
"@helpscout/stats": "0.0.5",
"@helpscout/zero": "^1.0.3",
"@storybook/addon-actions": "^4.1.11",
"@storybook/addon-links": "^4.1.11",
"@storybook/addons": "^4.1.11",
"@storybook/react": "^4.1.11",
"@types/enzyme": "3.1.15",
"@types/jest": "23.3.10",
"@types/react": "16.7.18",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.0.5",
"coveralls": "3.0.2",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.7.0",
"np": "^4.0.2",
"nyc": "13.0.0",
"prettier": "^1.16.1",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-draggable": "^3.1.1",
"ts-jest": "^23.10.5",
"typescript": "^3.2.2"
},
"dependencies": {
"@helpscout/react-utils": "^2.0.1",
"animejs": "^3.0.1"
}
}