-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
87 lines (87 loc) · 2.61 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
82
83
84
85
86
87
{
"name": "animate.js",
"version": "2.0.2",
"description": "Tiny vanilla JS plugin to trigger animations on elements when they are within the viewport",
"main": "./dist/scripts/animate.min.js",
"files": [
"src",
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jshjohnson/Animate.git"
},
"author": "Josh Johnson",
"license": "MIT",
"bugs": {
"url": "https://github.com/jshjohnson/Animate/issues"
},
"homepage": "https://github.com/jshjohnson/Animate#readme",
"scripts": {
"lint": "eslint $(find src -name '*.ts')",
"test": "npm run test:unit",
"test:unit": "mocha $(find src -name '*.test.ts')",
"test:unit:watch": "npm run test -- --watch",
"bundlesize": "bundlesize",
"dev": "nodemon --config .nodemonrc",
"serve": "http-server dist -p 3000",
"build": "npm run build:js && npm run build:css",
"build:js": "rollup -c rollup.config.js",
"build:css": "node-sass src/styles/app.scss dist/styles/app.css && csso dist/styles/app.css -o dist/styles/app.min.css",
"deploy": "git subtree push --prefix dist origin gh-pages",
"prepublish": "npm run build",
"postversion": "git push --no-verify --atomic --follow-tags",
"prepublishOnly": "npm run build"
},
"bundlesize": [
{
"path": "dist/scripts/animate.min.js",
"maxSize": "7.5 kB"
}
],
"husky": {
"hooks": {
"pre-push": "npm test"
}
},
"dependencies": {
"lodash-es": "^4.17.14"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/lodash-es": "^4.17.3",
"@types/mocha": "^5.2.7",
"@typescript-eslint/eslint-plugin": "^1.12.0",
"@typescript-eslint/parser": "^1.12.0",
"bundlesize": "^0.18.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"csso-cli": "^3.0.0",
"eslint": "^6.5.1",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.2",
"http-server": "^0.11.1",
"husky": "^3.0.9",
"mocha": "^6.1.4",
"node-sass": "^4.12.0",
"nodemon": "^1.19.1",
"nyc": "^14.1.1",
"prettier": "^1.18.2",
"rollup": "^1.16.7",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-license": "^0.9.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.22.0",
"rollup-plugin-uglify": "^6.0.2",
"sinon": "^7.3.2",
"sinon-chai": "^3.3.0",
"ts-node": "^8.3.0",
"tslib": "^1.10.0",
"typescript": "^3.5.3"
}
}