-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
67 lines (67 loc) · 1.7 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
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@davidisaaclee/interval-tree",
"version": "0.1.4",
"main": "./lib/index.js",
"module": "./es/index.js",
"author": "David Lee <david@david-lee.net>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/davidisaaclee/interval-tree"
},
"files": [
"es/",
"src/",
"lib/",
"dist/"
],
"keywords": [],
"scripts": {
"build:commonjs": "rollup --config --output.format cjs --output.file lib/index.js",
"build:umd": "rollup --config --output.format umd --output.file dist/index.js",
"build:es": "rollup --config --output.format es --output.file es/index.js",
"build": "npm run build:commonjs && npm run build:umd && npm run build:es",
"prepare": "npm run test && npm run build",
"test": "cross-env BABEL_ENV=test nyc ava",
"docs": "node ./scripts/generate-docs.js"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.39",
"@babel/core": "^7.0.0-beta.39",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.39",
"@babel/plugin-syntax-object-rest-spread": "^7.0.0-beta.39",
"@babel/polyfill": "^7.0.0-beta.39",
"@babel/preset-env": "^7.0.0-beta.39",
"@babel/register": "^7.0.0-beta.39",
"ava": "^0.25.0",
"babel-plugin-istanbul": "^4.1.5",
"builddocs": "https://github.com/davidisaaclee/builddocs",
"cross-env": "^5.1.3",
"mkdirp": "^0.5.1",
"node-sass": "^4.7.2",
"nyc": "^11.4.1",
"pug": "^2.0.0-rc.4",
"rollup": "^0.56.3",
"rollup-plugin-babel": "^4.0.0-beta.0"
},
"dependencies": {
"@davidisaaclee/bst": "^0.1.0",
"ramda": "^0.25.0"
},
"ava": {
"require": [
"@babel/register"
]
},
"nyc": {
"require": [
"@babel/register"
],
"reporter": [
"lcov",
"text"
],
"sourceMap": false,
"instrument": false
}
}