This repository was archived by the owner on Feb 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.44 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.44 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
{
"name": "@apicart/js-utils",
"version": "1.0.0-alpha2",
"description": "A small set of useful utilities for simpler development.",
"main": "dist/utils.min.js",
"unpkg": "dist/utils.min.js",
"jsdelivr": "dist/utils.min.js",
"files": [
"src",
"dist/*.js"
],
"scripts": {
"dev": "rollup -w src -c scripts/dev.js",
"build": "yarn build:dev && yarn build:prod && yarn build:prod-min && yarn build:test-stack",
"build:dev": "rollup -c scripts/dev.js",
"build:prod": "rollup -c scripts/prod.js",
"build:prod-min": "rollup -c scripts/prod.min.js",
"build:test-stack": "rollup -c scripts/test-stack.js",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"test:chrome": "karma start --single-run --browsers ChromeHeadless karma.conf.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/apicart/js-utils.git"
},
"keywords": [
"js-utils",
"apicart",
"utilities"
],
"author": "Vladimír Macháček",
"license": "MIT",
"bugs": {
"url": "https://github.com/apicart/js-utils/issues"
},
"homepage": "https://github.com/apicart/js-utils/#readme",
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^5.12.0",
"karma": "^2.0.5",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"mocha": "^5.2.0",
"rollup": "^1.1.0",
"rollup-plugin-banner": "^0.2.0",
"rollup-plugin-uglify": "^6.0.1"
}
}