-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.54 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
{
"name": "unitjs",
"version": "1.0.0",
"description": "UnitJS is a personal project I've been developing over the years. It follows the `Revealing Module Pattern` along with the [`IIFE Pattern`](http://benalman.com/news/2010/11/immediately-invoked-function-expression/). Started as a simple script for one website, but I realized that as I developed new websites, the same functionality was required. Instead of copy&pasting the code, I decided to start building this library for personal use.",
"main": "unit.js",
"scripts": {
"test:grep": "karma start karma.conf.js --",
"test": "npm run test:grep -- ./src/test/**/*.spec.js",
"lint": "eslint ./src/**/*.js",
"build:min": "google-closure-compiler --js='src/*.js' --js_output_file build/unit.min.js --create_source_map build/unit.js.map",
"postbuild:min": "karma start karma.build.conf.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vmcruz/UnitJS.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/vmcruz/UnitJS/issues"
},
"homepage": "https://github.com/vmcruz/UnitJS#readme",
"dependencies": {},
"devDependencies": {
"eslint": "7.26.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-plugin-import": "2.23.2",
"google-closure-compiler": "20210505.0.0",
"jasmine-core": "3.7.1",
"karma": "6.3.2",
"karma-chrome-launcher": "3.1.0",
"karma-coverage": "2.0.3",
"karma-jasmine": "4.0.1",
"karma-spec-reporter": "0.0.32"
},
"node": "^10.12.0 || >=12.0.0"
}