-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.53 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
49
50
51
52
53
54
55
56
{
"name": "frink",
"description": "Very liberal implementation of W3C XPath and XQuery functions 3.1",
"keywords": [
"xml",
"json",
"xquery",
"xpath",
"W3C",
"standards",
"recommendation"
],
"version": "0.5.2",
"author": "Wouter Hager",
"contributors": [],
"main": "./lib/index",
"files": [
"lib"
],
"directories": {
"lib": "./lib"
},
"scripts": {
"build": "babel --no-babelrc --plugins @babel/plugin-transform-modules-commonjs src --out-dir lib -s --ignore layers",
"watch": "babel --watch --no-babelrc --plugins @babel/plugin-transform-modules-commonjs src --out-dir lib -s --ignore layers",
"client-build": "browserify src/layers/frink.js -s amd -o dist/frink.js -t [ babelify ]",
"client-min": "uglifyjs --compress --mangle --verbose dist/frink.js -o dist/frink.min.js",
"test": "node test/index"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wshager/frink.git"
},
"dependencies": {
"@babel/preset-env": "^7.6.2",
"babelify": "^10.0.0",
"big.js": "^5.0.3",
"browserify": "^16.5.0",
"l3n": "0.1.1",
"ohamt": "0.0.9",
"rrb-vector": "0.0.7",
"rxjs": "^6.2.2",
"xregexp": "^4.2.4"
},
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/wshager/frink/issues"
},
"homepage": "https://github.com/wshager/frink#readme",
"devDependencies": {
"@babel/cli": "^7.6.2",
"@babel/core": "^7.6.2",
"@babel/plugin-transform-modules-commonjs": "^7.6.0",
"express": "^4.16.2"
}
}