-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.19 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
{
"name": "flairjs",
"title": "Flair.js",
"description": "True Object Oriented JavaScript",
"copyright": "(c) 2017-2020 Vikas Burman",
"version": "0.64.35",
"author": "Vikas Burman <[email protected]>",
"keywords": [
"javascript",
"oops",
"js",
"object oriented",
"es6",
"es5",
"es7"
],
"engines": {
"node": ">=10"
},
"license": "MIT",
"link": "https://flairjs.com",
"homepage": "https://flairjs.com",
"repository": {
"type": "git",
"url": "https://github.com/vikasburman/flairjs.git"
},
"main": "./flair.js",
"scripts": {
"build": "flair build",
"build-full": "flair build --full",
"build-quick": "flair build --quick",
"package": "flair pack && npm pack ./temp/publish/package/npm",
"test": "flair test",
"test-client": "flair test --client",
"serve": "http-server ./ -p8088 && pkill -f http-server",
"refresh": "yarn remove flairjs-cli && yarn add flairjs-cli --dev"
},
"devDependencies": {
"flairjs-cli": "^0.71.0",
"http-server": "^0.11.1"
},
"dependencies": {}
}