-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
37 lines (37 loc) · 1.06 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
{
"name": "sntools",
"author": "Standard Notes <[email protected]>",
"license": "AGPL-3.0",
"version": "1.1.0",
"main": "dist/sntools.js",
"scripts": {
"start": "webpack serve --config webpack.dev.js --progress --hot",
"lint": "eslint lib --ext .js",
"lint:fix": "npm run lint -- --fix",
"build": "webpack --config webpack.prod.js",
"test": "jest",
"coverage": "npm run test -- --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/standardnotes/sntools.git"
},
"devDependencies": {
"@babel/cli": "^7.13.14",
"@babel/core": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@standardnotes/eslint-config-extensions": "^1.0.3",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"dayjs": "^1.10.4",
"eslint": "^7.24.0",
"eslint-plugin-jest": "^24.3.5",
"html-webpack-plugin": "^5.3.1",
"jest": "^26.6.3",
"terser-webpack-plugin": "^5.1.1",
"webpack": "^5.28.0",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.7.3"
}
}