-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathpackage.json
53 lines (53 loc) · 1.44 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
{
"name": "fullik",
"version": "1.3.3",
"description": "JavaScript 3D library",
"main": "build/fik.js",
"repository": "lo-th/Fullik",
"jsnext:main": "build/fik.module.js",
"module": "build/fik.module.js",
"files": [
"package.json",
"LICENSE",
"README.md",
"build/fik.js",
"build/fik.min.js",
"build/fik.module.js",
"src"
],
"directories": {
"example": "examples"
},
"eslintConfig": {
"extends": "mdcs"
},
"scripts": {
"build": "rollup -c",
"dev": "concurrently --names \"ROLLUP,HTTP\" -c \"bgBlue.bold,bgGreen.bold\" \"rollup -c utils/rollup.config.js -w -m inline\" \"servez -p 8111 --index\"",
"start": "concurrently --names \"ROLLUP,HTTP\" -c \"bgBlue.bold,bgGreen.bold\" \"rollup -c utils/rollup.config.js -w -m inline\" \"http-server -c-1 -p 8111 -o index.html\""
},
"keywords": [
"fullik",
"fik",
"fik.js",
"ui"
],
"author": "lo-th",
"license": "MIT",
"bugs": {
"url": "https://github.com/lo-th/Fullik/issues"
},
"homepage": "http://lo-th.github.io/Fullik/",
"devDependencies": {
"@babel/core": "^7.12.16",
"@babel/plugin-proposal-class-properties": "^7.12.13",
"@babel/preset-env": "^7.12.16",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"concurrently": "^5.3.0",
"regenerator-runtime": "^0.13.7",
"rollup": "^2.39.0",
"rollup-plugin-terser": "^7.0.2",
"servez": "^1.11.0"
}
}