-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
40 lines (40 loc) · 935 Bytes
/
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
{
"name": "ng2-fused",
"version": "0.5.1",
"description": "FuseBox plugins and utilities for building Angular2 applications.",
"author": "Alexander Klock",
"repository": {
"type": "git",
"url": "https://github.com/alex-klock/ng2-fused"
},
"license": "MIT",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "npm run clean && tsc",
"clean": "rimraf dist",
"test": "npm run build && jasmine JASMINE_CONFIG_PATH=jasmine.json"
},
"devDependencies": {
"@types/jasmine": "^2.5.47",
"@types/node": "^7.0.12",
"fuse-box": "^2.3.2",
"jasmine": "^2.5.3",
"rimraf": "^2.6.1",
"typescript": "^2.4.2"
},
"keywords": [
"fusebox",
"fuse-box",
"ng2",
"angular2",
"plugin"
],
"dependencies": {
"@types/acorn": "^4.0.2",
"acorn": "^5.1.1",
"escodegen": "^1.8.1",
"fs-extra": "^4.0.2",
"glob": "^7.1.2"
}
}