-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (91 loc) · 3.12 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@mobilabs/es6pakket",
"version": "2.2.0",
"description": "A boilerplate for building Javascript ES6 libraries with Pakket",
"main": "_dist/lib/es6pakket.js",
"minified": "_dist/lib/es6pakket.min.js",
"unpkg": "_dist/lib/es6pakket.mjs",
"module": "_dist/lib/es6pakket.min.mjs",
"bin": {
"es6pakket": "./bin/es6pakket.js"
},
"scripts": {
"general": " --- GENERAL ---",
"build:js": " --- BUILDING JAVASCRIPT --- ",
"build:js:dev": "node scripts/build.js.dev.js $1",
"build:js:prod": "node scripts/build.js.prod.js $1",
"build:css": " --- BUILDING CSS --- ",
"build:generic": " --- BUILDING (GENERIC) --- ",
"build:development": " --- BUILDING (DEVELOPMENT) --- ",
"build:dev": "npm run build:js:dev",
"build:production": " --- BUILDING (PRODUCTION) --- ",
"build:skeleton:prod": "node scripts/build.skeleton.prod.js $1",
"prebuild:prod": "npm run build:dev && npm run build:skeleton:prod",
"build:prod": "npm run build:js:prod",
"testing": " --- TESTING --- ",
"test": "cross-env NODE_ENV=test c8 --reporter=lcov mocha --require esm ./test/main.js",
"display:coverage": "open -a safari ./coverage/lcov-report/index.html",
"check:coverage": "c8 check-coverage --statements 100 --branches 100 --functions 100 --lines 100",
"report": "c8 report",
"serving": " --- SERVING --- ",
"server:dev": "http-server --port 8080",
"server:prod": "http-server --port 8090",
"watch:js:css": " --- WATCHING --- ",
"watch:js": "nodemon --watch './src/**/*.js' --exec npm run build:dev",
"watch": "npm run watch:js",
"deployment": " --- DEPLOYING --- ",
"dep:prod": "rm -rf _dist-$npm_package_version && npm run build:prod && cp -r _dist _dist-$npm_package_version",
"dep:private:package": "npm run build:prod && node scripts/dep.private.js && sh scripts/compress.sh ${npm_package_name} ${npm_package_version} @mobilabs",
"dep:npm:private:package": "npm run build:prod && npm pack && sh scripts/dep.npm.private.sh ${npm_package_name} ${npm_package_version} @mobilabs",
"others": " --- OTHERS ---",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "https://github.com/jclo/es6pakket.git"
},
"keywords": [
"ES6"
],
"author": {
"name": "Mobilabs",
"email": "contact@mobilabs.fr",
"url": "https://www.mobilabs.fr"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/jclo/es6pakket/issues"
},
"homepage": "https://github.com/jclo/es6pakket",
"dependencies": {
"nopt": "^7.2.1",
"shelljs": "^0.8.5"
},
"devDependencies": {
"c8": "^10.1.2",
"chai": "^4.4.1",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"esm": "^3.2.25",
"http-server": "^14.1.1",
"husky": "^9.1.1",
"mocha": "^8.4.0",
"nodemon": "^3.1.4",
"pakket": "^1.3.0",
"terser": "^5.31.3",
"@mobilabs/es6kadoo": "2.2.1"
},
"c8": {
"include": [
"src/**/*.js"
],
"exclude": [],
"all": false
},
"publishConfig": {
"access": "public"
},
"private": false
}