-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 2.27 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "platypusui",
"version": "0.16.9",
"description": "A front-end set of UI controls for PlatypusTS written in TypeScript",
"main": "dist/platypusui.js",
"devDependencies": {
"concurrently": "^4.1.0",
"glob": "^7.1.3",
"grunt": "^1.0.3",
"grunt-cli": "^1.3.2",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-cssmin": "^3.0.0",
"grunt-contrib-less": "^2.0.0",
"grunt-contrib-uglify": "^4.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-less-bundle": "^0.1.1",
"grunt-ts": "^6.0.0-beta.21",
"grunt-ts-bundle": "^0.2.0",
"http-server": "^0.11.1",
"load-grunt-tasks": "^4.0.0",
"lodash": "^4.17.11",
"nodemon": "^1.18.7",
"platypus": "^0.28.0",
"rimraf": "^2.6.2",
"typescript": "^3.2.1"
},
"scripts": {
"prepublish": "npm run deploy",
"build:all": "npm run build:examples && npm run build:src",
"build:examples": "tsc -p build/tsc/examples",
"build:src": "tsc -p build/tsc/src",
"clean:all": "npm run clean:examples && npm run clean:src",
"clean:examples": "rimraf -p examples/app.*",
"clean:src": "rimraf -p dist/*",
"deploy": "grunt",
"start": "concurrently -r \"npm run watch:less\" \"npm run watch:examples\" \"npm run server:examples\"",
"less:examples": "grunt lessCompile:examples",
"server:examples": "http-server -p 3000",
"watch:examples": "npm run build:examples -- -w",
"watch:less": "nodemon -q -w src -e less -x npm run less:examples",
"watch:src": "npm run build:src -- -w"
},
"keywords": [
"platypi",
"platypus",
"platui",
"platypusui",
"typescript",
"ui",
"controls"
],
"author": "Platypi <[email protected]> (https://platypi.io)",
"bugs": {
"url": "https://github.com/Platypi/platypusui/issues"
},
"homepage": "https://platypi.io",
"typescript": {
"definition": "dist/platypusui.d.ts"
},
"typings": "dist/platypusui-local.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/Platypi/platypusui.git"
},
"license": "MIT"
}