-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.63 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
{
"name": "ng-timespan",
"version": "1.3.2",
"description": "A TS/JS implementation of Timespans",
"main": "ng-timespan.umd.js",
"jsnext:main": "ng-timespan.esm.js",
"module": "ng-timespan.esm.js",
"types": "ng-timespan.d.ts",
"scripts": {
"copy": "node tools/copy-package.js && node tools/copy-readme.js",
"bundle": "rollup -c rollup.config.umd.js && rollup -c rollup.config.esm.js && tsc",
"postbundle": "node tools/remove-code.js",
"build": "rm -rf ./dist && npm run bundle && npm run copy && touch ./dist/.npmrc",
"postpublish": "echo \"All done!\"; exit 0",
"pretest": "tsc -p ./test",
"test": "nyc mocha -r ts-node/register/type-check 'test/**/*.spec.ts'",
"posttest": "nyc report --reporter=json --all && rm -f ./lib/*.js && rm -f ./lib/*.js.map && rm -f ./test/*.js && rm -f ./test/*.js.map"
},
"repository": {
"type": "git",
"url": "git+https://github.com/greenygh0st/ng-timespan.git"
},
"author": "Dale Myszewski <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/greenygh0st/ng-timespan/issues"
},
"homepage": "https://github.com/greenygh0st/ng-timespan#readme",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"chai": "^4.2.0",
"codecov": "^3.1.0",
"cross-env": "^5.2.0",
"del": "^3.0.0",
"mocha": "^5.2.0",
"nyc": "^14.1.1",
"rollup-plugin-angular": "^0.4.4",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-typescript": "^0.8.1",
"ts-node": "^7.0.1",
"tslib": "^1.9.3",
"typescript": "^2.9.0"
},
"dependencies": {}
}