-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.73 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.73 KB
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
{
"name": "@bimdata/areas",
"version": "0.5.1",
"description": "A Vuejs Blender style area manager to create custom layouts.",
"main": "dist/areas.js",
"module": "dist/areas.esm.js",
"unpkg": "dist/areas.js",
"files": [
"dist/*"
],
"scripts": {
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "jest",
"test:e2e": "start-server-and-test 'npm run serve -- -p 3030' 3030 cy:run",
"test:e2e-dev": "npm run build:prod && start-server-and-test 'npm run serve -- -p 3030' 3030 cy:open",
"serve": "http-server -c-1",
"cy:run": "cypress run",
"cy:open": "cypress open",
"build:dev": "rollup -c --environment BUILD:development",
"build:prod": "rollup -c --environment BUILD:production",
"prebuild:dev": "rm -rf dist",
"prebuild:prod": "rm -rf dist",
"dev": "npm run build:dev -- --watch"
},
"author": "BIMData.io",
"repository": {
"type": "git",
"url": "git+https://github.com/bimdata/areas.git"
},
"bugs": {
"url": "https://github.com/bimdata/areas/issues"
},
"homepage": "https://github.com/bimdata/areas#readme",
"license": "MIT",
"keywords": [
"areas",
"area",
"layout",
"resize",
"drag and drop"
],
"devDependencies": {
"@babel/preset-env": "^7.9.6",
"@vue/test-utils": "^1.0.2",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^26.0.1",
"cypress": "^4.5.0",
"http-server": "^0.12.3",
"jest": "^26.0.1",
"rollup": "^2.8.2",
"rollup-plugin-livereload": "^1.3.0",
"rollup-plugin-serve": "^1.0.1",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-vue": "5.1.6",
"start-server-and-test": "^1.11.0",
"vue": "^2.6.11",
"vue-jest": "^3.0.5",
"vue-template-compiler": "^2.6.11"
}
}