-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.69 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
{
"name": "evmt",
"version": "1.0.9",
"description": "Self contained event emitter",
"main": "dist/index.min.js",
"scripts": {
"dev": "rollup -c -w",
"build": "rollup -c",
"test": "karma start --single-run",
"test:watch": "karma start",
"lint": "standard",
"precommit": "npm run lint",
"prepush": "npm run test",
"update-coc": "weallbehave -o .",
"update-contrib": "weallcontribute -o .",
"update-help": "npm run update-coc && npm run update-contrib"
},
"keywords": [
"event",
"emitter",
"event-emitter",
"subscribe"
],
"repository": "[email protected]:klauskpm/mitter.git",
"author": "Klaus Kazlauskas <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.1",
"husky": "^0.14.3",
"jasmine-core": "^2.9.0",
"karma": "^2.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-coveralls": "^1.1.2",
"karma-jasmine": "^1.1.1",
"karma-phantomjs-launcher": "^1.0.4",
"karma-rollup-preprocessor": "^5.1.1",
"karma-spec-reporter": "^0.0.32",
"karma-threshold-reporter": "^0.1.15",
"np": "^2.19.0",
"rollup": "^0.54.1",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-buble": "^0.18.0",
"rollup-plugin-istanbul": "^2.0.0",
"rollup-plugin-uglify": "^2.0.1",
"standard": "^10.0.3",
"weallbehave": "^1.2.0",
"weallcontribute": "^1.0.8"
},
"standard": {
"globals": [
"describe",
"it",
"beforeEach",
"expect",
"spyOn"
],
"ignore": [
"/dist",
"/coverage",
"/node_modules"
]
}
}