-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
48 lines (48 loc) · 1.16 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
47
48
{
"name": "js-xpath",
"version": "0.0.8",
"description": "An xpath parser",
"authors": [
"Dimagi <[email protected]>"
],
"license": "BSD-3-Clause",
"homepage": "https://github.com/dimagi/js-xpath",
"keywords": [
"xpath",
"jison",
"parser"
],
"repository": {
"type": "git",
"url": "https://github.com/dimagi/js-xpath.git"
},
"dependencies": {
"biginteger": "^1.0.3"
},
"devDependencies": {
"browserify": "17.0.0",
"jison": "0.4.18",
"jshint": "^2.12.0",
"node-qunit-phantomjs": "^2.1.1",
"qunit": "^2.14.0"
},
"engines": {
"yarn": ">= 1.0.0"
},
"resolutions": {
"cached-path-relative": "^1.0.2",
"elliptic": "^6.5.4",
"minimist": "^1.2.3",
"json-schema": "^0.4.0",
"request": "^2.88.2",
"shelljs": "^0.8.5",
"sshpk": "^1.13.2"
},
"main": "src/main.js",
"scripts": {
"jison": "jison src/jison/xpath.jison src/jison/xpath.jisonlex -o src/parser.js",
"dist": "browserify src/main.js --standalone xpath > dist/js-xpath.js",
"build": "npm run jison && npm run dist",
"test": "node-qunit-phantomjs test/tests.html && jshint src/models.js test/*.js"
}
}