-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.23 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
{
"name": "cisto",
"version": "1.0.6",
"description": "Simple template system that compiles to anything you want",
"main": "dist/cisto.js",
"typings": "dist/cisto.d.ts",
"scripts": {
"build": "rollup -c rollup.config.ts",
"watch": "rollup -c rollup.config.ts -w",
"test": "jest",
"lint": "tslint --project ."
},
"author": "Jan Zípek <jan@zipek.cz>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:SkaceKamen/cisto.js.git"
},
"devDependencies": {
"@types/jest": "^23.3.1",
"@types/node": "^10.9.4",
"jest": "^23.5.0",
"rollup": "^0.65.2",
"rollup-plugin-commonjs": "^9.1.6",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.17.0",
"rollup-plugin-uglify": "^5.0.2",
"ts-jest": "^23.1.4",
"tslint": "^5.11.0",
"tslint-config-standard": "^8.0.1",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.0.3"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testEnvironment": "node",
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
},
"dependencies": {}
}