-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 2.27 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
69
{
"name": "eventemitter3-timer",
"version": "1.0.1",
"description": "`EventEmitter3-Timer` is a plugin extend [EventEmitter3](https://github.com/primus/eventemitter3) to create time events easily.",
"main": "./dist/eventemitter3-timer.js",
"typings": "./dist/eventemitter3-timer.d.ts",
"author": "Shen Yiming<[email protected]> (http://symis.me)",
"license": "MIT",
"keywords": [
"eventemitter3",
"pixi",
"timermanager",
"timeline",
"timer",
"schedule",
"time",
"event"
],
"homepage": "https://soimy.github.io/eventemitter3-timer",
"repository": {
"type": "git",
"url": "https://github.com/soimy/eventemitter3-timer.git"
},
"scripts": {
"clean": "rimraf dist",
"clean:doc": "rimraf docs",
"clean:all": "rimraf dist docs",
"build": "npm run clean && webpack --config webpack.config.js --display 'verbose' --progress",
"build:doc": "npm run clean:doc && typedoc --theme minimal --out docs/ src/ && touch docs/.nojekyll",
"build:all": "npm run clean:all && npm run build && npm run build:doc",
"test": "mocha-webpack",
"cover": "cross-env NODE_ENV=coverage nyc --reporter=lcov --reporter=text npm run test && rimraf .nyc_output"
},
"devDependencies": {
"@types/chai": "^4.0.10",
"@types/mocha": "^2.2.44",
"@types/node": "^9.4.6",
"awesome-typescript-loader": "^3.4.1",
"chai": "^4.1.1",
"coveralls": "^3.0.0",
"cross-env": "^5.1.3",
"dts-bundle": "^0.7.3",
"istanbul": "^0.4.5",
"istanbul-instrumenter-loader": "^3.0.0",
"mocha": "^5.0.1",
"mocha-webpack": "^1.0.1",
"nyc": "^11.4.1",
"rimraf": "^2.6.2",
"source-map-loader": "^0.2.3",
"ts-node": "^4.0.2",
"tslint": "^5.8.0",
"tslint-config-standard": "^7.0.0",
"typedoc": "^0.10.0",
"typescript": "^2.6.2",
"webpack": "^3.11.0",
"webpack-node-externals": "^1.6.0"
},
"dependencies": {
"eventemitter3": "^3.0.1"
},
"nyc": {
"include": [
"src/**/*.js",
"src/**/*.ts"
],
"instrument": false,
"sourceMap": false
}
}