-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
46 lines (46 loc) · 1.31 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
{
"name": "rdom",
"version": "0.6.0",
"description": "more compositional dom interface",
"main": "dist/rdom.js",
"directories": {
"example": "example"
},
"scripts": {
"prebuild": "npm run lint; npm test",
"build": "browserify -r ./src/rdom -s rdom | derequire > dist/rdom.js ",
"postbuild": "uglifyjs dist/rdom.js -m -c unused=false -o dist/rdom.min.js",
"lint": "eslint src/*.js test/*.js",
"release-patch": "xyz --repo [email protected]:buzzdecafe/rdom.git --increment patch",
"release-minor": "xyz --repo [email protected]:buzzdecafe/rdom.git --increment minor",
"release-major": "xyz --repo [email protected]:buzzdecafe/rdom.git --increment major",
"test": "mocha --reporter spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/buzzdecafe/rdom.git"
},
"keywords": [
"dom",
"functional",
"programming"
],
"author": "Buzz de Cafe",
"license": "MIT",
"bugs": {
"url": "https://github.com/buzzdecafe/rdom/issues"
},
"homepage": "https://github.com/buzzdecafe/rdom#readme",
"dependencies": {},
"devDependencies": {
"browserify": "13.x.x",
"chai": "3.5.x",
"derequire": "^2.0.3",
"eslint": "^2.11.x",
"jsdom": "9.2.x",
"mocha": "2.x.x",
"mocha-jsdom": "1.x.x",
"uglify-js": "2.4.x",
"xyz": "1.0.x"
}
}