-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 922 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 922 Bytes
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
{
"name": "straaljs",
"version": "1.0.5",
"description": "A JavaScript library for Straal API",
"author": "Straal",
"license": "Apache-2.0",
"main": "dist/straaljs.min.js",
"module": "dist/straaljs.min.js",
"scripts": {
"build": "webpack --mode production",
"lint": "eslint src",
"test:unit": "karma start"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^7.9.0",
"istanbul-instrumenter-loader": "^3.0.1",
"karma": "^5.2.2",
"karma-chai": "^0.1.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sinon": "^1.0.5",
"karma-webpack": "^4.0.2",
"mocha": "^8.1.3",
"sinon": "^9.0.3",
"terser-webpack-plugin": "^4.2.2",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"crypto-js": "^4.0.0"
}
}