forked from sociomantic-tsunami/microbe
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.27 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.27 KB
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
{
"name": "microbejs",
"version": "0.4.13",
"author": "Mouse Braun <mouse@knoblau.ch>",
"description": "microbe.js - A modular JS library for DOM manipulation, and more",
"contributors": [
"Nicolas Brugneaux <nicolas.brugneaux@gmail.com>",
"Michele Guido <michele.guido@sociomantic.com>"
],
"repository": {
"type": "git",
"url": "https://github.com/sociomantic/microbe.git"
},
"scripts": {
"start": "./node_modules/.bin/gulp && echo \"Build complete.\"",
"build": "./node_modules/.bin/gulp toolkit && ./node_modules/.bin/gulp selectorEngine && ./node_modules/.bin/gulp microbe && npm run buildTests && npm run test && echo \"All builds complete and tests passed.\"",
"buildTests": "./node_modules/.bin/gulp buildTests && echo \"Tests Built.\"",
"gulp": "./node_modules/.bin/gulp && echo \"Build complete.\"",
"microbe": "./node_modules/.bin/gulp && echo \"Build complete.\"",
"selectorEngine": "./node_modules/.bin/gulp selectorEngine && echo \"Build complete.\"",
"toolkit": "./node_modules/.bin/gulp toolkit && echo \"Build complete.\"",
"test": "node --harmony ./tests/nightmare.js",
"clean": "./node_modules/.bin/gulp clean && echo \"Dist cleaned.\"",
"watch": "./node_modules/.bin/gulp watch",
"docs": "docker -o www/doc/ -i src --sidebar true --watch --js dist/microbe.js --extras fileSearch -c manni"
},
"devDependencies": {
"browserify": "^5.11.2",
"connect": "^3.4.0",
"docker": "git://github.com/nicolasbrugneaux/docker.git#patch-1",
"gulp": "^3.8.7",
"gulp-header": "^1.2.2",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.4.0",
"gulp-uglify": "^1.2.0",
"nightmare": "^2.0.8",
"observe-shim": "^0.4.1",
"observe-utils": "git://github.com/jason-braun-sociomantic-mouse/observe-utils.git#patch-1",
"promise": "^6.0.0",
"qunitjs": "^1.18.0",
"serve-static": "^1.10.0",
"setimmediate": "^1.0.2",
"vo": "^1.0.3"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/sociomantic/microbe/issues"
},
"homepage": "http://m.icro.be",
"main": "./dist/microbe.min.js",
"keywords": [
"microbe",
"microbejs",
"dom",
"javascript",
"observe",
"selector",
"engine",
"css4",
"http",
"event",
"class",
"aria"
]
}