-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.17 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
{
"name": "provent",
"version": "0.0.1",
"description": "Promises and Events... combined.",
"repository": {
"type": "git",
"url": "https://github.com/mauriciosoares/provent.git"
},
"main": "dist/provent.js",
"browser": "src/provent.js",
"scripts": {
"test": "npm run eslint | npm run karma",
"watch": "watchify src/provent.js -s Provent -o dist/provent.js -v",
"build": "uglifyjs dist/provent.js -o dist/provent.min.js --source-map dist/provent.min.js.map",
"eslint": "eslint src/*.js src/**/*.js",
"karma": "karma start karma.conf.js"
},
"browserify": {
"transform": [
[
"babelify"
]
]
},
"keywords": [
"promises",
"events",
"dom"
],
"author": "Mauricio Soares",
"license": "Beerware",
"devDependencies": {
"babel-eslint": "^4.1.3",
"eslint": "^1.5.1",
"karma": "^0.13.10",
"karma-browserify": "^4.3.0",
"karma-coverage": "^0.5.2",
"karma-coveralls": "^1.1.2",
"karma-jasmine": "^0.3.6",
"karma-phantomjs-launcher": "^0.2.1",
"phantomjs": "^1.9.18",
"uglify-js": "^2.4.24",
"watchify": "^3.4.0"
},
"dependencies": {
"babelify": "^6.3.0"
}
}