This repository has been archived by the owner on Nov 28, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
78 lines (78 loc) · 2.42 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "microbejs",
"version": "0.5.2",
"author": "Mouse Braun <[email protected]>",
"description": "microbe.js - A modular JS library for DOM manipulation, and more",
"contributors": [
"Nicolas Brugneaux <[email protected]>",
"Michele Guido <[email protected]>"
],
"repository": {
"type": "git",
"url": "[email protected]:sociomantic-tsunami/microbe.git"
},
"scripts": {
"build": "./node_modules/.bin/gulp toolkit && ./node_modules/.bin/gulp selectorEngine && ./node_modules/.bin/gulp http && ./node_modules/.bin/gulp && npm run docsOnce && npm run test && echo \"All builds complete and tests passed.\"",
"buildTests": "./node_modules/.bin/gulp buildTests",
"deploy": "node ./scripts/version_bump && npm run build && npm run docsOnce",
"docsOnce": "docker -o www/doc/ -i src --sidebar true --js dist/microbe.js --extras fileSearch -c manni",
"docs": "docker -o www/doc/ -i src --sidebar true --watch --js dist/microbe.js --extras fileSearch -c manni",
"gulp": "./node_modules/.bin/gulp",
"http": "./node_modules/.bin/gulp http",
"microbe": "./node_modules/.bin/gulp",
"selectorEngine": "./node_modules/.bin/gulp selectorEngine",
"start": "./node_modules/.bin/gulp",
"toolkit": "./node_modules/.bin/gulp toolkit",
"test": "node --harmony ./scripts/nightmare.js",
"versionBump": "node ./scripts/version_bump"
},
"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-replace": "^0.4.0",
"gulp-uglify": "^1.2.0",
"nightmare": "^2.0.8",
"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-tsunami/microbe/issues"
},
"files": [
"CODE_OF_CONDUCT.md",
"older_changes.md",
"README.md",
"src/",
"dist/"
],
"autoupdate": {
"source": "git",
"target": "git://github.com/sociomantic-tsunami/microbe.git",
"basePath": "dist/",
"files": [
"microbe.min"
]
},
"homepage": "http://m.icro.be",
"main": "./dist/microbe.min.js",
"keywords": [
"microbe",
"microbejs",
"dom",
"javascript",
"observe",
"selector",
"engine",
"css4",
"http",
"event",
"class"
]
}