-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1007 Bytes
/
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
{
"name": "trieval",
"version": "0.0.3",
"description": "A JavaScript port of Data.Trie",
"repository": {
"type": "git",
"url": "https://github.com/gabejohnson/trieval.git"
},
"main": "index.js",
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"build": "babel src/trie.js --out-file ./index.js --source-maps inline",
"test": "nyc --reporter=lcov --reporter=html ava",
"test:ci": "ava",
"prepublish": "npm run build"
},
"keywords": [
"trie",
"tries",
"immutable",
"fantasy-land",
"fantasyland"
],
"author": "Gabe Johnson <[email protected]>",
"license": "MIT",
"dependencies": {
"sanctuary": "^0.12.2"
},
"devDependencies": {
"ava": "^0.18.2",
"babel-cli": "^6.24.0",
"babel-preset-env": "^1.2.1",
"coveralls": "^2.12.0",
"nyc": "^10.1.2"
},
"ava": {
"require": [
"babel-register"
],
"files": [
"test/test-trie.js"
],
"source": [
"src/trie.js"
]
}
}