-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.52 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.52 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
{
"name": "@transclusion/runtime-browser",
"version": "1.0.0-alpha.2",
"description": "",
"author": "Marius Lundgård <studio@mariuslundgard.com>",
"license": "MIT",
"main": "dist/commonjs/index.js",
"module": "dist/module/index.js",
"typings": "dist/module/index.d.ts",
"scripts": {
"build": "npm-run-all tsc-*",
"clean": "rimraf dist",
"format": "prettier --no-bracket-spacing --no-semi --print-width 120 --single-quote --write \"{src,perf/src,test}/**/*.{js,ts,tsx}\"",
"lint": "tslint -c tslint.json '{src,test}/**/*.{ts,tsx}'",
"prebuild": "npm run clean",
"prepublishOnly": "npm run build",
"test": "jest",
"tsc-commonjs": "tsc -p .tsconfig/commonjs.json",
"tsc-module": "tsc -p .tsconfig/module.json"
},
"peerDependencies": {
"@transclusion/runtime-core": "^1.0.0-alpha.2",
"@transclusion/vdom": "^1.0.0-beta.3"
},
"devDependencies": {
"@transclusion/runtime-core": "^1.0.0-alpha.2",
"@transclusion/vdom": "^1.0.0-beta.3",
"@types/jest": "^21.1.8",
"@types/node": "^8.0.29",
"jest": "^21.1.0",
"jest-cli": "^21.1.0",
"npm-run-all": "^4.1.1",
"prettier": "^1.8.2",
"rimraf": "^2.6.2",
"ts-jest": "^21.0.1",
"tslint": "^5.7.0",
"tslint-config-prettier": "^1.5.0",
"typescript": "^2.6.2"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(\\.|/)(test|spec)\\.tsx?$",
"moduleFileExtensions": [
"js",
"ts",
"tsx"
]
}
}