-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.46 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
{
"name": "midgard-schematics",
"version": "1.2.0",
"description": "CLI tool for assembling a Walhall app based on Midgard and other modules",
"scripts": {
"clean": "rimraf lib",
"copyjson": "cp ./src/collection.json ./lib/",
"copysh": "cp ./src/git-log.sh ./lib/",
"babel:prod": "babel gulpfile.babel.js --out-file ./lib/gulpfile.js",
"build": "npm run clean && tsc -p tsconfig.json && npm run babel:prod && npm run copyjson && npm run copysh",
"test": "npm run build && jasmine **/*_spec.js"
},
"main": "./lib/import-module/index.js",
"files": [
"/lib",
"src/git-log.sh"
],
"keywords": [
"schematics"
],
"author": "Aziz Haddad",
"license": "MIT",
"schematics": "./lib/collection.json",
"dependencies": {
"@angular-devkit/core": "^0.8.1",
"@angular-devkit/schematics": "^0.8.1",
"@babel/core": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/register": "^7.0.0",
"@schematics/angular": "^0.8.1",
"@types/cheerio": "^0.22.9",
"@types/jasmine": "^2.6.0",
"@types/node": "^8.0.31",
"cheerio": "0.20.0",
"gulp": "^4.0.0",
"gulp-exec": "^3.0.2",
"gulp-git": "^2.8.0",
"jasmine": "^2.8.0",
"typescript": "^2.5.2"
},
"devDependencies": {
"@babel/cli": "^7.1.0",
"babel-eslint": "^9.0.0",
"eslint": "^5.6.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"rimraf": "^2.6.2"
}
}