Skip to content

Commit

Permalink
chore(misc): add initial config files
Browse files Browse the repository at this point in the history
  • Loading branch information
Hotell committed Nov 3, 2015
1 parent cd8ce9c commit b29e682
Show file tree
Hide file tree
Showing 5 changed files with 83 additions and 21 deletions.
54 changes: 33 additions & 21 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,27 +1,39 @@
# Logs
logs
*.log

# Runtime data
pids
*.pid
*.seed
#################
## Misc
#################
**/.DS_Store
nbproject
manifest.mf
build.xml
node_modules
npm-debug.log
*.js
*.map
*.d.ts
typings

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov
#################
## JetBrains
#################
.idea
.project
.settings
.idea/*
*.iml

# Coverage directory used by tools like istanbul
coverage
############
## Windows
############

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt
# Windows image file caches
Thumbs.db

# node-waf configuration
.lock-wscript
# Folder config file
Desktop.ini

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release
############
## Mac
############

# Dependency directory
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
node_modules
# Mac crap
.DS_Store
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
!*.d.ts
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
save-exact=true
32 changes: 32 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"name": "ng-metadata",
"version": "1.0.0-beta.0",
"description": "Angular 2 style decorators and utils for Angular 1.x",
"main": "ng-metadata.js",
"typings": "./ng-metadata.d.ts",
"scripts": {
"prepublish": "tsc",
"tsc": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ngParty/ng-metadata.git"
},
"keywords": [
"angularjs",
"typescript",
"decorators"
],
"author": "Martin Hochel <hochelmartin@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ngParty/ng-metadata/issues"
},
"homepage": "https://github.com/ngParty/ng-metadata#readme",
"devDependencies": {
"systemjs": "0.19.5",
"systemjs-builder": "0.14.10",
"typescript": "1.6.2"
}
}
16 changes: 16 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "es5",
"noImplicitAny": true,
"sourceMap": true,
"experimentalDecorators": true,
"declaration": true
},
"files": [
"ng-metadata.ts"
],
"exclude": [
"node_modules"
]
}

0 comments on commit b29e682

Please sign in to comment.