This repository was archived by the owner on Feb 7, 2022. 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.38 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.38 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": "@wallerbuilt/mantle",
"version": "1.0.6",
"description": "An event-driven Javascript library",
"main": "dist/index.js",
"repository": "https://github.com/mdxprograms/mantle",
"private": false,
"scripts": {
"start": "parcel watch src/index.js",
"start:people": "parcel examples/people/index.html -p 3000 --out-dir examples/dist --open",
"build": "rm -rf dist && parcel build src/index.js --no-source-maps --global @wallerbuilt/mantle",
"prepublish": "npm run test",
"fix:scripts": "eslint --fix src/",
"cypress": "cypress open",
"test": "ava --verbose",
"test:watch": "ava --verbose --watch",
"coverage": "nyc -r html -n src/**/*.js npm run test"
},
"husky": {
"hooks": {
"pre-commit": "npm run fix:scripts && npm run build"
}
},
"keywords": [
"javascript",
"javascript-library",
"event-driven",
"dom",
"minimal"
],
"author": "Josh Waller <mdx.programs@gmail.com>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.10.3",
"@babel/core": "^7.10.3",
"@babel/plugin-transform-runtime": "^7.10.3",
"ava": "^3.9.0",
"browser-env": "^3.3.0",
"cypress": "^4.5.0",
"eslint": "^7.0.0",
"esm": "^3.2.25",
"husky": "^4.2.5",
"nyc": "^15.1.0",
"parcel-bundler": "^1.12.4"
},
"dependencies": {
"@babel/runtime": "^7.10.3",
"nanobus": "^4.4.0"
}
}