-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (36 loc) · 1.09 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
{
"name": "undo-redoer",
"description": "Simple and robust CoffeeScript/JavaScript library for undo/redo features on plain state object. Full test coverage. For Node.JS and Browser (with AMD support).",
"version": "1.2.4",
"homepage" : "https://github.com/Se7enSky/UndoRedoer",
"engines": {"node": "*"},
"author": "Se7enSky studio <[email protected]>",
"keywords": [
"undo",
"redo",
"state",
"diff",
"backdiff"
],
"dependencies": {
"coffee-script": "*",
"lodash": "*"
},
"devDependencies": {
"mocha": "*",
"should": "*"
},
"repository" : {
"type" : "git",
"url" : "https://github.com/Se7enSky/UndoRedoer.git"
},
"licenses": [{
"type": "mit"
}],
"readmeFilename": "README.md",
"licenseFilename": "LICENSE",
"scripts": {
"test": "./node_modules/.bin/mocha --colors --ui bdd --reporter list --require should --require coffee-script UndoRedoer.test.coffee",
"prepublish": "./node_modules/.bin/coffee -cb UndoRedoer.coffee"
}
}