-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.33 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
{
"name": "elch-js",
"version": "0.1.0",
"description": "A tiny templating engine written in typescript",
"main": "src/tiny-template.ts",
"scripts": {
"build": "mkdir dist & npm run lint && npm run browserify && npm run license",
"watch": "mkdir dist & npm run watchify",
"browserify": "browserify src/main.ts -p [ tsify --noImplicitAny --suppressImplicitAnyIndexErrors --target es5 ] --standalone Elch | uglifyjs > dist/elch.min.js",
"watchify": "watchify src/main.ts -p [ tsify --noImplicitAny --suppressImplicitAnyIndexErrors --target es5 ] --standalone Elch -o dist/elch.js -v",
"docs": "typedoc --target es5 --out docs src/",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"test": "mocha --reporter spec --require ts-node/register 'test/test-suite.ts'",
"license": "node script/addLicense.js"
},
"keywords": [
"elch",
"reactive",
"view",
"template",
"js"
],
"author": "Paul",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"@types/node": "^12.0.3",
"browserify": "^16.2.3",
"chai": "^4.2.0",
"mocha": "^6.1.4",
"ts-node": "^8.1.0",
"tsify": "^4.0.1",
"tslint": "^5.16.0",
"typedoc": "^0.14.2",
"typescript": "^3.5.1",
"uglify-js": "^3.5.15",
"watchify": "^3.11.1"
}
}