-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1 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
{
"name": "css-instaglam",
"description": "Easy abstraction layer using CSS classes to leverage filter and filter animations to your site.",
"repository": "https://github.com/anied/CSSInstaglam",
"homepage": "https://www.alexnied.com/cssinstaglam/",
"author": "Alexander Nied <alex.nied@gmail.com>",
"license": "MIT",
"private": false,
"devDependencies": {
"grunt": "~0.4.5",
"grunt-contrib-clean": "~0.6.0",
"grunt-contrib-copy": "~0.8.1",
"grunt-contrib-cssmin": "~0.14.0",
"grunt-contrib-less": "~1.0.1",
"grunt-contrib-watch": "~0.6.1",
"grunt-string-replace": "~1.2.0",
"http-server": "^0.11.1"
},
"scripts": {
"build": "npx grunt build",
"start": "http-server src",
"preversion": "npm run build",
"version": "npm run build && git add dist/.",
"postversion": "git push && git push --tags"
},
"dependencies": {},
"keywords": [
"CSS",
"filter",
"transition",
"animation",
"effects",
"design"
],
"version": "1.0.1"
}