-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.08 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
{
"name": "infinite-object",
"version": "4.0.0",
"description": "Version control tree using plain JavaScript and prototypical inheritance",
"es2015": "main.js",
"main": "main.umd.js",
"browser": "main.umd.js",
"module": "main.es5.js",
"jsnext:main": "main.es5.js",
"scripts": {
"flow": "flow",
"test": "main.html",
"lint": "eslint *.js",
"test-es5": "main.es5.html",
"test-umd": "main.umd.html",
"prettier": "prettier --write *.js",
"build-umd": "rollup main.es5.js --format umd --name io --banner \"/*global define*/\" --output main.umd.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/msand/Io.git"
},
"keywords": [
"VCS",
"prototypical",
"inheritance",
"undo-redo",
"tree"
],
"author": "Mikael Sand <[email protected]> (http://github.com/msand)",
"license": "ISC",
"bugs": {
"url": "https://github.com/msand/Io/issues"
},
"homepage": "https://github.com/msand/Io#readme",
"devDependencies": {
"eslint": "3.19.0",
"flow": "0.2.3",
"prettier": "1.18.2",
"rollup": "0.41.6"
}
}