-
-
Notifications
You must be signed in to change notification settings - Fork 117
/
package.json
66 lines (66 loc) · 2.04 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
{
"name": "baobab",
"version": "2.6.1",
"description": "JavaScript persistent data tree with cursors.",
"main": "./dist/baobab.js",
"dependencies": {
"emmett": "^3.2.0"
},
"devDependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.4",
"@babel/node": "^7.7.4",
"@babel/preset-env": "7.7.4",
"@babel/register": "^7.7.4",
"@types/async": "^3.0.7",
"@types/expect": "^24.3.0",
"@types/lodash": "^4.14.149",
"@types/mocha": "^7.0.1",
"@types/node": "^13.7.0",
"@yomguithereal/eslint-config": "^4.0.0",
"async": "^3.1.0",
"babelify": "^10.0.0",
"benchmark": "^2.1.4",
"browserify": "^16.5.0",
"eslint": "^6.7.2",
"fs-extra": "^8.1.0",
"lodash": "^4.17.4",
"mkdirp": "^0.5.1",
"mocha": "^7.0.1",
"terser": "^4.4.2",
"ts-mocha": "^6.0.0",
"tslint": "^6.0.0",
"typescript": "^3.7.5"
},
"scripts": {
"benchmark": "babel-node --presets @babel/preset-env benchmark.js",
"build": "node ./scripts/build.js",
"check": "npm test && npm run lint && npm run build",
"dist:addendum": "cat scripts/commonjs-addendum.js >> dist/baobab.js",
"dist": "babel ./src --out-dir dist --presets @babel/preset-env && cp src/baobab.d.ts dist/. && npm run dist:addendum",
"lint": "eslint -c eslint.config.js ./src ./test && tslint src/baobab.d.ts test/suites/*.ts",
"prepublish": "npm run check && npm run dist",
"test:commonjs": "node scripts/test-commonjs.js",
"test:es6-import": "babel --presets @babel/preset-env scripts/test-es6-import.js | node",
"test": "ts-mocha --reporter spec --require test/register.js test/suites/*.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/Yomguithereal/baobab.git"
},
"keywords": [
"cursors",
"atom",
"tree",
"react"
],
"author": {
"name": "Guillaume Plique",
"url": "http://github.com/Yomguithereal"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Yomguithereal/baobab/issues"
},
"homepage": "https://github.com/Yomguithereal/baobab"
}