-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.32 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
{
"name": "gsap-promisify",
"version": "1.0.2",
"description": "Replace GSAP TweenMax or TweenLite callback for promises",
"main": "index.js",
"license": "MIT",
"author": {
"name": "Iran Reyes",
"email": "iranreyesfleitas@gmail.com",
"url": "https://github.com/iranreyes"
},
"dependencies": {},
"devDependencies": {
"bluebird": "^3.5.1",
"browserify": "^9.0.3",
"eslint": "^4.19.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-promise": "^3.7.0",
"faucet": "0.0.1",
"gsap": "1.20.4",
"husky": "^0.14.3",
"lint-staged": "^7.0.0",
"prettier": "^1.11.1",
"smokestack": "^3.2.1",
"tap-closer": "1.0.0",
"tape": "^3.5.0"
},
"lint-staged": {
"**/*.{js,jsx,json,css}": [
"prettier --write",
"git add"
]
},
"scripts": {
"test": "browserify test.js | tap-closer | smokestack | faucet",
"prepush": "echo 'Pre-push checks...' && npm run js-lint",
"js-lint": "eslint './**/*.js' -c ./.eslintrc --quiet --ignore-pattern .gitignore"
},
"keywords": [],
"repository": {
"type": "git",
"url": "git://github.com/iranreyes/gsap-promisify.git"
},
"homepage": "https://github.com/iranreyes/gsap-promisify",
"bugs": {
"url": "https://github.com/iranreyes/gsap-promisify/issues"
}
}