forked from geocortex/showcaser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.37 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
{
"name": "showcaser",
"version": "1.0.0",
"description": "A Material Design inspired showcase view that highlights any element on your page",
"main": "dist/showcaser.js",
"types": "dist/showcaser.d.ts",
"scripts": {
"prebuild": "npm run clean",
"build": "tsc -p src && rollup -c && uglifyjs dist/showcaser.js -o dist/showcaser.min.js && copyfiles -f src/showcaser.d.ts dist",
"clean": "rimraf dist",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/latitudegeo/showcaser.git"
},
"keywords": [
"showcase",
"showcaser",
"material design",
"material",
"typescript",
"javascript"
],
"author": "Latitude Geographics",
"contributors": [
{
"name": "Ian Schmitz",
"email": "[email protected]",
"url": "https://github.com/ianschmitz"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/latitudegeo/showcaser/issues"
},
"dependencies": {},
"devDependencies": {
"autoprefixer": "^6.5.4",
"copyfiles": "^1.0.0",
"cssnano": "^3.9.1",
"raf": "^3.3.0",
"rimraf": "^2.5.4",
"rollup": "^0.37.0",
"rollup-plugin-commonjs": "^6.0.0",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-plugin-postcss": "^0.2.0",
"tslint": "^4.0.2",
"typescript": "^2.1.4",
"uglify-js": "^2.7.5"
}
}