-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 1.25 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
{
"name": "altr",
"version": "0.4.0-alpha-5",
"description": "README.md",
"main": "./lib/index.js",
"scripts": {
"lint": "eslint .",
"test": "npm run lint && node test | faucet && browserify test -d | jsdom-eval | faucet",
"build": "mkdir -p dist; npm run build-debug; npm run build-min",
"build-debug": "browserify lib/browser.js --debug > dist/altr.js",
"build-min": "browserify lib/browser.js --debug -g uglifyify | exorcist dist/altr.min.js.map > dist/altr.min.js",
"docs": "cd docs && hugo server --watch --buildDrafts",
"docs-win": ".\\docs\\hugo.exe server --watch --buildDrafts"
},
"repository": {
"type": "git",
"url": "http://github.com/hayes/altr"
},
"author": "Michael Hayes",
"license": "MIT",
"dependencies": {
"batch-queue": "0.0.2",
"dirtybit": "^1.0.1",
"exorcist": "^0.4.0",
"extend": "^1.3.0",
"micro-dom": "0.0.17"
},
"devDependencies": {
"browserify": "^12.0.1",
"eslint": "^1.10.2",
"eslint-config-standard": "^4.4.0",
"eslint-plugin-standard": "^1.3.1",
"faucet": "0.0.1",
"jsdom-eval": "^0.2.5",
"tape": "^4.2.2",
"uglifyify": "^3.0.1"
},
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/hayes/altr/issues"
}
}