-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.75 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.75 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
61
62
63
64
65
66
67
68
69
{
"name": "@arijs/frontend",
"version": "0.3.1",
"description": "Front-end utilities and patterns, components for use with VueJS",
"main": "./lib/index.js",
"exports": {
".": {
"import": "./src/index.mjs",
"require": "./lib/index.js"
},
"./client/*": {
"import": "./src/client/*.mjs",
"require": "./lib/client/*.js"
},
"./server/*": {
"import": "./src/server/*.mjs",
"require": "./lib/server/*.js"
},
"./isomorphic/*": {
"import": "./src/isomorphic/*.mjs",
"require": "./lib/isomorphic/*.js"
},
"./package.json": "./package.json"
},
"files": [
"src",
"lib",
"test",
"utils",
"vcomp"
],
"scripts": {
"build": "./node_modules/.bin/babel src --out-dir lib --verbose",
"test": "node test/mjs/index.mjs && node test/cjs/index.cjs",
"testSeriesMjs": "node test/mjs/series/index.mjs",
"testSeries": "node test/mjs/series/index.mjs && node test/cjs/series/index.cjs",
"testXorRotateMjs": "node test/mjs/utils/xor-rotate.mjs",
"testClient": "npx http-server ./ -o /test/"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/arijs/front-end.git"
},
"bugs": {
"url": "https://github.com/arijs/front-end/issues"
},
"homepage": "https://github.com/arijs/front-end#readme",
"keywords": [
"frontend",
"components",
"vuejs"
],
"author": "AriJS",
"license": "MIT",
"devDependencies": {
"@arijs/babel-plugin-transform-modules-umd": "^0.1.3",
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.4",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"babel-plugin-module-resolver": "^4.1.0"
},
"dependencies": {
"@babel/runtime": "^7.16.3",
"dir-files": "^1.0.0-rc.15"
}
}