-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 831 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 831 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
{
"name": "@flashist/appframework",
"version": "0.0.1",
"scripts": {
"build": "gulp",
"publish:patch": "npm version patch && npm run build && cd ./dist && npm publish",
"publish:minor": "npm version minor && npm run build && cd ./dist && npm publish",
"publish:major": "npm version major && npm run build && cd ./dist && npm publish"
},
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/flashist/appframework"
},
"main": "index.js",
"typings": "index.d.ts",
"dependencies": {
"@flashist/flibs": "0.x",
"@flashist/fconsole": "0.x"
},
"devDependencies": {
"@types/webfontloader": "^1.6.29",
"gulp": "^4.0.2",
"gulp-shell": "^0.8.0",
"require-dir": "^1.2.0",
"rimraf": "^3.0.2",
"typescript": "^4.0.2"
}
}