-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.96 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.96 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "tmpo-tween",
"version": "0.0.2",
"license": "MIT",
"main": "./bundles/store.umd.js",
"module": "index.js",
"scripts": {
"clean:pre": "rimraf release",
"clean:post": "rimraf \"src/**/*.ngfactory.ts\"",
"copy": "cpy README.md LICENSE package.json release",
"build:js": "node_modules/.bin/ngc -p tsconfig.dist.json",
"build:umd": "rollup -c rollup.config.js",
"prebuild": "npm run clean:pre",
"postbuild": "npm run clean:post && npm run copy",
"build": "npm run build:js && npm run build:umd"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tmpo-io/tween.git"
},
"keywords": [
"tween",
"rxjs",
"easing",
"angular2",
"ng2"
],
"homepage": "https://github.com/tmpo-io/tween",
"author": "Jordi Collell <j@tmpo.io>",
"peerDependencies": {
"@angular/core": "^2.2.1",
"rxjs": "^5.0.0-rc.1"
},
"devDependencies": {
"@angular/common": "^2.2.1",
"@angular/compiler": "^2.2.1",
"@angular/compiler-cli": "^2.2.1",
"@angular/core": "^2.2.1",
"@angular/platform-browser": "^2.2.1",
"@angular/platform-browser-dynamic": "^2.2.1",
"@angular/platform-server": "^2.2.1",
"@types/jasmine": "^2.2.33",
"@types/node": "^6.0.38",
"awesome-typescript-loader": "^2.2.1",
"core-js": "^2.4.1",
"cpy-cli": "^1.0.1",
"istanbul-instrumenter-loader": "^0.2.0",
"jasmine": "^2.5.0",
"karma": "^1.2.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.0.2",
"karma-mocha-reporter": "^2.1.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.0",
"rimraf": "^2.5.4",
"rollup": "^0.34.13",
"rxjs": "^5.0.0-rc.1",
"ts-loader": "^0.8.2",
"tslint": "^3.15.1",
"tslint-loader": "^2.1.5",
"typescript": "^2.0.6",
"ts-node": "^1.6.1",
"uglifyjs": "^2.4.10",
"webpack": "^2.1.0-beta.21",
"zone.js": "^0.6.17",
"codelyzer": "^1.0.0-beta.3"
}
}