-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.61 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.61 KB
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
{
"name": "event-context",
"version": "0.5.2",
"description": "Universal Event context for JavaScript",
"main": "index.js",
"jsnext:main": "index.es.js",
"directories": {
"test": "test"
},
"devDependencies": {
"chai": "^3.5.0",
"jquery": "^3.0.0",
"jsdom": "9.5.0",
"jsdom-global": "2.1.0",
"lodash": "^4.15.0",
"mocha": "^3.0.2",
"mocha-jsdom": "^1.1.0",
"rollup": "^0.34.13",
"rollup-plugin-alias": "^1.2.0",
"rollup-plugin-buble": "^0.13.0",
"rollup-plugin-multi-entry": "^2.0.1",
"rollup-plugin-strip": "^1.1.1",
"rollup-watch": "^2.5.0",
"source-map-support": "^0.4.2"
},
"scripts": {
"build": "npm run build:core && npm run build:plugins",
"build:core": "rollup -c && cp {README.md,package.json} build/core/",
"build:plugins": "node build_plugins",
"test": "rollup -c rollup.test.config.js --sourcemap && mocha _test -R progress --require source-map-support/register",
"test:watch": "npm test || true && chokidar '{src,test}/**/*.js' -c 'npm test'",
"prerelease": "npm run build jquery node",
"release": "cd build/core && npm publish && cd ../plugins-jquery && npm publish && cd ../plugins-node && npm publish",
"postrelease": "rm -rf build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tungv/event-context.git"
},
"keywords": [
"event",
"context",
"domain",
"universal"
],
"author": "Tung Vu <me@tungv.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/tungv/event-context/issues"
},
"homepage": "https://github.com/tungv/event-context#readme"
}