This repository has been archived by the owner on Dec 11, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.51 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
{
"name": "axn",
"version": "1.7.0",
"description": "Minimalist listenable actions.",
"main": "./index.js",
"keywords": [
"action",
"events",
"emitter",
"signals"
],
"files": [
"index.js",
"package.json",
"README.md",
"LICENSE"
],
"scripts": {
"lint": "jshint index.js test",
"test": "mocha --growl -R spec",
"cover": "npm run lint && istanbul cover --report lcov _mocha -- -R spec",
"coveralls": "npm run cover && cat ./coverage/lcov.info | coveralls ; rm -rf ./coverage",
"dist": "npm run cjs-min; npm run globals-min; npm run amd-min",
"cjs": "cp index.js dist/axn.js",
"cjs-min": "npm run cjs; uglifyjs dist/axn.js > dist/axn.min.js",
"globals": "cat templates/globals.before index.js templates/globals.after > dist/axn.globals.js",
"globals-min": "npm run globals; uglifyjs dist/axn.globals.js > dist/axn.globals.min.js",
"amd": "cat templates/amd.before index.js templates/amd.after > dist/axn.amd.js",
"amd-min": "npm run amd; uglifyjs dist/axn.amd.js > dist/axn.amd.min.js"
},
"repository": {
"type": "git",
"url": "https://github.com/pluma/axn.git"
},
"author": "Alan Plum <me@pluma.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pluma/axn/issues"
},
"homepage": "https://github.com/pluma/axn",
"devDependencies": {
"coveralls": "^2.11.2",
"expect.js": "^0.3.1",
"istanbul": "^0.3.2",
"jshint": "^2.5.6",
"mocha": "^2.0.1",
"uglify-js": "^2.4.15"
},
"dependencies": {}
}