-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
30 lines (30 loc) · 900 Bytes
/
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
{
"name": "math-script",
"version": "1.0.1",
"description": "This is a test of my first npm based website",
"main": "src/matrix_lib.js",
"scripts": {
"build": "browserify src/matrix_lib -o dist/math-script.js",
"web": "browserify src/package.js -o dist/math-script-full.js",
"test": "jest --collectCoverage",
"docs": "jsdoc -r src -d ./docs -c jsdoc.json -t node_modules/docdash ",
"build-demo": "copy /y demo docs\\demo",
"coverage": "jest --coverage --coverageReporters=text-lcov | coveralls"
},
"author": "Nate Zimmer",
"license": "MIT",
"devDependencies": {
"browserify": "^13.3.0",
"coveralls": "^3.1.0",
"docdash": "^1.2.0",
"jest": "^26.4.2",
"jsdoc": "^3.6.6"
},
"dependencies": {
"operator-overloading-nz-fork": "^0.5.2"
},
"repository": {
"type": "git",
"url": "https://github.com/NateZimmer/Maths.js"
}
}