-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 2.97 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
{
"name": "computational-linear-algebra-js",
"version": "1.3.0",
"description": "A linear algebra library",
"author": "Paolo D'Elia <[email protected]> (https://github.com/paolodelia99)",
"main": "./main/es5",
"module": "main/esm",
"directories": {
"test": "./test",
"src": "./src",
"es": "./es",
"lib": "./lib"
},
"jsdelivr": "dist/linear.algebra.min.js",
"unpkg": "dist/linear.algebra.min.js",
"scripts": {
"test": "cross-env NODE_ENV=test npm run test:src && npm run lint",
"test:src": "mocha test/unit-tests --recursive --require @babel/register --forbid-only",
"test:browser": "karma start test/browser-test-config/local-karma.js",
"test:browserstack": "karma start test/browser-test-config/browserstack-karma.js",
"lint": "eslint . --config=.eslintrc --env=mocha",
"coverage": "nyc _mocha test/unit-tests --recursive --require @babel/register && nyc report --reporter=text-lcov | coveralls",
"coverage:html": "nyc --reporter=lcov --reporter=text-summary mocha test/unit-tests --recursive --require @babel/register && echo \\\"\\nDetailed coverage report is available at ./coverage/lcov-report/index.html\\",
"compile": "gulp compile",
"build": "gulp",
"build-and-test": "npm run build && npm run test:all && npm run lint",
"watch": "gulp watch",
"fix": "eslint . --config=.eslintrc --env=mocha --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paolodelia99/paolodelia99.git"
},
"keywords": [
"linear algebra",
"math",
"computational math"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/paolodelia99/paolodelia99/issues"
},
"homepage": "https://github.com/paolodelia99/paolodelia99#readme",
"dependencies": {
"gpu.js": "^2.9.3",
"mocha": "^7.1.1"
},
"engines": {
"node": ">=8.0.0"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.9.5",
"@babel/register": "^7.9.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-istanbul": "^6.0.0",
"babel-polyfill": "^6.26.0",
"coveralls": "^3.0.13",
"cross-env": "^7.0.2",
"del": "^5.1.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"fancy-log": "^1.3.3",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"karma": "^5.0.2",
"karma-browserstack-launcher": "^1.5.2",
"karma-firefox-launcher": "^1.3.0",
"karma-mocha": "^2.0.0",
"karma-mocha-reporter": "^2.2.5",
"karma-webpack": "^4.0.2",
"nyc": "^15.0.1",
"sinon": "^9.0.2",
"standard": "^14.3.3",
"uglify-js": "^3.9.1",
"webpack": "^4.43.0"
}
}