-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.82 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
67
68
{
"name": "evex",
"version": "2.2.0",
"description": "Evex is a pattern to realize the Flux design pattern by means of DOM Events",
"main": "index.js",
"unpkg": "dist/evex.js",
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist",
"test": "BABEL_ENV=test kocha --require @babel/register --require ./src/__tests__/helper src/__tests__/*.js",
"cov": "nyc --reporter=lcov --reporter=text-summary npm test",
"codecov": "npm run cov && codecov",
"dist": "run-s dist:*",
"dist:prod": "bili --format umd --replace.__DEV__ false src/index.js",
"dist:dev": "bili --format umd --replace.__DEV__ true --filename evex.dev.js src/index.js",
"prepublish": "npm run dist",
"lint": "standard",
"fix": "standard --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/capsidjs/evex.git"
},
"keywords": [
"flux",
"event",
"events",
"dom",
"capsid",
"capsidjs"
],
"author": "Yoshiya Hinosawa",
"license": "MIT",
"bugs": {
"url": "https://github.com/capsidjs/evex/issues"
},
"homepage": "https://github.com/capsidjs/evex#readme",
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-decorators": "^7.1.6",
"@babel/plugin-transform-modules-commonjs": "^7.1.0",
"@babel/register": "^7.0.0",
"babel-eslint": "^10.0.1",
"bili": "^3.4.2",
"capsid": "^0.29.0",
"chai": "^4.1.2",
"codecov": "^3.0.0",
"domino": "^2.0.0",
"genel": "^1.1.1",
"kocha": "^1.9.0",
"npm-run-all": "^4.1.2",
"nyc": "^15.0.0",
"rimraf": "^3.0.0",
"standard": "^14.0.0",
"testdouble": "^3.2.6"
},
"standard": {
"parser": "babel-eslint",
"globals": [
"CustomEvent",
"__DEV__",
"capsidDebugMessage"
]
}
}