-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.18 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
{
"name": "done-mutation",
"version": "3.1.0",
"main": "done-mutation.js",
"description": "Encodes MutationRecords so they can be patched on other documents",
"homepage": "https://github.com/donejs/done-mutation",
"repository": {
"type": "git",
"url": "git://github.com/donejs/done-mutation.git"
},
"author": {
"name": "DoneJS Contributors",
"email": "[email protected]",
"url": "https://donejs.com"
},
"scripts": {
"preversion": "npm test",
"version": "git commit -am \"Update version number\"",
"postpublish": "git push --tags && git push",
"testee": "testee test.html --browsers firefox",
"test": "npm run jshint && npm run testee",
"jshint": "jshint ./*.js --config",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish"
},
"keywords": [
"donejs",
"donejs-plugin",
"mutationobserver"
],
"devDependencies": {
"ir-clone": "^1.0.2",
"jshint": "^2.9.1",
"steal": "^2.0.0",
"steal-qunit": "^2.0.0",
"testee": "^0.9.0"
},
"license": "MIT",
"dependencies": {
"utf8": "^3.0.0"
}
}