-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.78 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.78 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
{
"name": "ng-template",
"title": "ngTemplate",
"description": "Light-weight DOM-based template engine, inspired by AngularJS",
"author": "Dmitry Sheiko",
"main": "./dist/ngtemplate.js",
"typings": "./index.d.ts",
"version": "1.0.0",
"scripts": {
"start": "http-server . -o",
"build": "tslint --project tsconfig.json && tsc && npm run browserfy:demo && npm run browserfy",
"browserfy": "tsc && cjsc dist/ngtemplate.glob.js -o dist/ngtemplate.glob.min.js -M",
"build:demo": "tsc -p demo",
"browserfy:demo": "tsc -p demo && cjsc demo/build/demo/main.js -o demo/build/demo/main-vanilla.min.js -M",
"test": "tslint --project tsconfig.json && npm run test:ts",
"test:browserfy": "tsc -p tests/ && cjsc tests/build/tests/index.spec.js -o tests/build/index.bundled.js",
"test:ts": "npm run test:browserfy && karma start",
"test:firefox": "npm run test:browserfy && karma start --reporters kjhtml --browsers Firefox --singleRun=false"
},
"license": "MIT",
"keywords": [
"template",
"engine",
"TypeScript",
"language",
"DOM",
"JavaScript"
],
"repository": {
"type": "git",
"url": "git@github.com:dsheiko/ng-template.git"
},
"devDependencies": {
"cjsc": "^1.0.7",
"es6-shim": "^0.35.1",
"http-server": "^0.9.0",
"jasmine-core": "^2.4.1",
"karma": "^1.2.0",
"karma-chrome-launcher": "^0.1.4",
"karma-firefox-launcher": "^0.1.3",
"karma-jasmine": "^1.0.2",
"karma-jasmine-html-reporter": "^0.2.1",
"karma-phantomjs-launcher": "^1.0.1",
"phantomjs-prebuilt": "^2.1.12",
"systemjs": "^0.19.31",
"tslint": "^3.14.0",
"typescript": "^1.8.10",
"whatwg-fetch": "github:github/fetch"
},
"jspm": {
"directories": {
"baseURL": "dist"
},
"devDependencies": {}
}
}