scratch – Blame information for rev 84

Subversion Repositories:
Rev:
Rev Author Line No. Line
84 office 1 {
2 "name": "simple-undo",
3 "version": "1.0.1",
4 "description": "a very basic javascript undo/redo stack for managing histories of basically anything",
5 "main": "./lib/simple-undo.js",
6 "scripts": {
7 "test": "node_modules/.bin/gulp test"
8 },
9 "repository": {
10 "type": "git",
11 "url": "https://github.com/mattjmattj/simple-undo.git"
12 },
13 "keywords": [
14 "undo",
15 "redo",
16 "history"
17 ],
18 "author": "Matthias Jouan",
19 "license": {
20 "type": "THE BEER-WARE LICENSE",
21 "url": "https://fedoraproject.org/wiki/Licensing/Beerware"
22 },
23 "bugs": {
24 "url": "https://github.com/mattjmattj/simple-undo/issues"
25 },
26 "homepage": "https://github.com/mattjmattj/simple-undo",
27 "devDependencies": {
28 "gulp": "^3.8.8",
29 "gulp-jshint": "^1.8.5",
30 "gulp-mocha": "^1.1.0",
31 "jshint": "^2.5.6",
32 "mocha": "^1.21.4",
33 "should": "^4.0.4"
34 }
35 }