-
-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.23 KB
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
{
"name": "nwsapi",
"version": "2.2.28",
"description": "Fast CSS Selectors API Engine",
"homepage": "https://javascript.nwbox.com/nwsapi/",
"main": "./src/nwsapi",
"keywords": [
"css",
"css3",
"css4",
"matcher",
"selector"
],
"licenses": [
{
"type": "MIT",
"url": "https://javascript.nwbox.com/nwsapi/MIT-LICENSE"
}
],
"license": "MIT",
"author": {
"name": "Diego Perini",
"email": "diego.perini@gmail.com",
"web": "https://www.iport.it/"
},
"maintainers": [
{
"name": "Diego Perini",
"email": "diego.perini@gmail.com",
"web": "https://www.iport.it/"
}
],
"bugs": {
"url": "https://github.com/dperini/nwsapi/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/dperini/nwsapi.git"
},
"scripts": {
"prepare": "npm run setup",
"setup": "npm run wpt:setup",
"lint": "eslint ./src/nwsapi.js",
"test": "node --test test/repo/integration/*.test.mjs",
"wpt:serve": "node test/wpt/wpt-launcher.mjs serve",
"wpt:setup": "node test/wpt/wpt-launcher.mjs setup",
"wpt:verify": "node test/wpt/wpt-launcher.mjs verify"
},
"devDependencies": {
"acorn": "8.15.0",
"jsdom": "26.1.0"
}
}