-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
80 lines (80 loc) · 2.45 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
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "kapla",
"version": "2.1.7",
"description": "Tiny JS framework to manage DOM components",
"homepage": "https://github.com/thierrymichel/kapla#readme",
"module": "esm/index.js",
"browser": "dist/kapla.min.js",
"main": "lib/index.js",
"files": [
"esm",
"dist",
"lib"
],
"scripts": {
"clean": "rimraf lib dist esm",
"filesize": "gzip-size dist/kapla.min.js",
"lint": "eslint src/** || exit 0",
"build": "npm-run-all build:esm build:umd build:umd:min build:commonjs",
"build:esm": "cpx 'src/**/*.{mjs,js,json}' esm",
"build:esm:watch": "npm run build:esm -- -w",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
"build:commonjs:watch": "npm run build:commonjs -- --watch",
"build:umd": "cross-env BABEL_ENV=umd NODE_ENV=development webpack --progress --profile",
"build:umd:watch": "npm run build:umd -- --watch",
"build:umd:min": "cross-env BABEL_ENV=umd NODE_ENV=production webpack --progress --profile",
"build:umd:min:watch": "npm run build:umd:min -- --watch",
"test": "npm run lint && jest --coverage || exit 0",
"test:watch": "jest --watch --verbose",
"coverage": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"prepare": "npm-run-all clean test build"
},
"repository": {
"type": "git",
"url": "https://github.com/thierrymichel/kapla.git"
},
"keywords": [
"framework",
"javascript",
"component",
"module",
"dom",
"event",
"observer"
],
"author": {
"name": "Thierry Michel",
"email": "[email protected]",
"url": "http://thierrymichel.net/"
},
"license": "SEE LICENSE IN UNLICENSE",
"bugs": {
"url": "https://github.com/thierrymichel/kapla/issues"
},
"devDependencies": {
"@babel/cli": "7.2.0",
"@babel/core": "7.2.0",
"@babel/preset-env": "7.2.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.0.1",
"babel-loader": "8.0.4",
"babel-plugin-add-module-exports": "1.0.0",
"babel-plugin-transform-remove-console": "6.9.4",
"coveralls": "3.0.2",
"cpx": "1.5.0",
"cross-env": "5.2.0",
"eslint": "5.10.0",
"gzip-size-cli": "3.0.0",
"jest": "23.6.0",
"npm-run-all": "4.1.5",
"rimraf": "2.6.2",
"webpack": "4.27.1",
"webpack-bundle-analyzer": "3.0.3",
"webpack-cli": "3.1.2"
},
"dependencies": {
"detect-it": "3.0.4",
"eventemitter3": "3.0.1",
"exclamation": "thierrymichel/exclamation#master"
}
}