-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
64 lines (64 loc) · 1.64 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
{
"name": "@most/dom-event",
"version": "2.2.0",
"description": "Streamlined DOM Events for most.js",
"main": "dist/index.js",
"module": "dist/index.es.js",
"typings": "type-definitions/dom-event.d.ts",
"files": [
"dist",
"type-definitions"
],
"scripts": {
"build": "npm run build:dist && npm run build:min && npm run build:flow",
"build:dist": "rollup -c",
"build:min": "uglifyjs dist/index.js -o dist/index.min.js",
"build:flow": "cpy src/index.js.flow dist --rename index.js.flow",
"prepublish": "npm run build",
"test": "npm run test:lint && npm run test:unit && npm run test:flow",
"test:unit": "nyc mocha",
"test:lint": "standard --fix 'src/*.js' 'test/*.js' --verbose | snazzy",
"test:flow": "flow check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mostjs/dom-event.git"
},
"keywords": [
"most",
"reactive",
"event",
"functional",
"async",
"dom"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/mostjs/dom-event/issues"
},
"homepage": "https://github.com/mostjs/dom-event#readme",
"devDependencies": {
"@briancavalier/assert": "^3.4.0",
"@most/core": "^0.13.0",
"buba": "^4.0.2",
"cpy-cli": "^1.0.1",
"flow-bin": "^0.55.0",
"mocha": "^3.0.2",
"nyc": "^11.2.1",
"rollup": "^0.50.0",
"rollup-plugin-buble": "0.15.0",
"snazzy": "^7.0.0",
"standard": "^10.0.3",
"uglify-js": "^3.1.1"
},
"standard": {
"ignore": [
"test/flow"
]
},
"dependencies": {
"@most/scheduler": "^0.13.0",
"@most/types": "^0.11.1"
}
}