-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.11 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
{
"name": "plugin-license-sdk",
"version": "1.0.0",
"description": "",
"main": "./src/index.js",
"devDependencies": {
"ava": "^5.2.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-loader": "^7.1.5",
"babel-preset-es2015": "^6.24.1",
"eslint": "^8.39.0",
"moment": "^2.29.4",
"sinon": "^15.0.4",
"webpack": "^4.46.0",
"webpack-cli": "^4.10.0"
},
"scripts": {
"test": "ava test/index.js",
"dev": "webpack --config webpack.config.js -w",
"build": "WEBPACK_MODE=production webpack --config webpack.config.js",
"lint": "eslint src/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ifanrx/plugin-license-sdk.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ifanrx/plugin-license-sdk/issues"
},
"homepage": "https://github.com/ifanrx/plugin-license-sdk#readme",
"dependencies": {
"Base64": "^1.2.0",
"hash.js": "^1.1.7",
"node.extend": "^2.0.2",
"promise-light": "^0.1.14"
},
"ava": {
"require": [
"babel-register"
],
"babel": "inherit"
}
}