-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
37 lines (37 loc) · 1.03 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": "findinnw",
"version": "2.0.0",
"description": "Simulate the Ctrl+F (find) feature from Chrome in NW.js",
"main": "test.html",
"scripts": {
"start": "node build.js && nw .",
"build": "npm run validate && node build.js",
"lint": "eslint --no-fix **/*.js",
"fix": "eslint --fix **/*.js",
"sasslint": "sass-lint -c .sass-lint.yml -v -f table",
"sassfix": "sass-lint-auto-fix -c .sass-lint.yml",
"validate": "npm run lint && npm run sasslint"
},
"keywords": [
"find",
"search",
"nw.js",
"desktop"
],
"author": "TheJaredWilcurt",
"license": "MIT",
"ManifestComments": [
"Pinned sass to 1.26.5 because newer versions break and their docs are fucking garbage"
],
"devDependencies": {
"eslint": "^8.34.0",
"eslint-config-tjw-base": "^2.0.0",
"findandreplacedomtext": "^0.4.6",
"nw": "sdk",
"sass": "1.26.5",
"sass-lint": "^1.13.1",
"terser": "^5.16.5",
"tjw-sasslint-rules": "^2.1.0"
},
"repository": "https://github.com/nwutils/find-in-nw"
}