-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·49 lines (49 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
{
"name": "zed-shadow",
"version": "0.0.2",
"description": "Zed - The true elevation library",
"main": "lib/zed.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/TheSonOfThomp/Zed.git"
},
"keywords": [
"elevation",
"shadow",
"UI"
],
"author": "Adam Thompson",
"license": "ISC",
"bugs": {
"url": "https://github.com/TheSonOfThomp/Zed/issues"
},
"homepage": "https://github.com/TheSonOfThomp/Zed#readme",
"scripts": {
"build": "tsc && sass src/zed.scss lib/zed.css",
"test": "echo \"Error: no test specified\" && exit 1",
"publish": "npm run build && npm publish",
"watch": "nodemon",
"install:react": "cd ./demo/react-test/ && yarn",
"link:react": "yarn link && cd ./demo/react-test/ && yarn link zed-shadow",
"start:react": "cd ./demo/react-test/ && yarn start",
"install:vue": "cd ./demo/vue-test/ && npm i",
"link:vue": "npm link && cd ./demo/vue-test/ && npm link zed-shadow",
"start:vue": "cd ./demo/vue-test/ && npm run serve"
},
"devDependencies": {
"@types/node": "^12.12.42",
"gulp": "^4.0.2",
"gulp-concat": "^2.6.1",
"gulp-minify": "^3.1.0",
"gulp-sass": "^4.1.0",
"gulp-typescript": "^5.0.1",
"nodemon": "^1.19.4",
"sass": "^1.26.5",
"typescript": "^3.9.3"
},
"dependencies": {}
}