-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 946 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 946 Bytes
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
{
"name": "smooth-pages",
"version": "0.4.4",
"description": "Adds smooth transititon between pages",
"main": "build/smooth-pages.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint ./src/smooth-pages.js",
"build": "npm run lint && mkdir -p ./build && cp ./src/smooth-pages.js ./build && uglifyjs ./src/smooth-pages.js >./build/smooth-pages.min.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/idaproject/smooth-pages.git"
},
"keywords": [
"smooth",
"fade",
"transition",
"pages"
],
"author": "ar7n",
"license": "MIT",
"bugs": {
"url": "https://github.com/idaproject/smooth-pages/issues"
},
"homepage": "https://github.com/idaproject/smooth-pages#readme",
"devDependencies": {
"eslint": "^2.10.2",
"eslint-config-airbnb-base": "^3.0.1",
"eslint-plugin-import": "^1.8.0",
"uglify-js": "^2.6.2"
}
}