-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
56 lines (56 loc) · 1.75 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
49
50
51
52
53
54
55
56
{
"name": "riot-jest-transformer",
"version": "6.1.0",
"description": "Jest transformer for testing riot tags",
"main": "build/main.js",
"scripts": {
"build": " npm run clearBuild && npm run build-ts && npm run cleanBuild",
"build-ts": "tsc",
"watch": "tsc -w",
"test": "jest --config jest.config.js --no-cache",
"test:coverage": "jest --config jest.config.js --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"test:watch": "jest --watch --config jest.config.js --no-cache",
"clearBuild": "rm -rf ./build",
"cleanBuild": "rm -rf ./build/__tests__ ./build/__mocks__",
"prepublishOnly": "npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tompascall/riot-jest-transformer.git"
},
"keywords": [
"utility",
"jest",
"testing",
"tool",
"transformer",
"riotjs",
"tdd"
],
"author": "tompascall",
"license": "ISC",
"bugs": {
"url": "https://github.com/tompascall/riot-jest-transformer/issues"
},
"homepage": "https://github.com/tompascall/riot-jest-transformer#readme",
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"@babel/preset-typescript": "^7.6.0",
"@types/jest": "^24.0.18",
"@types/lodash": "^4.14.141",
"@types/node": "^12.7.8",
"babel-jest": "^24.1.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-plugin-transform-require-ignore": "^0.1.1",
"coveralls": "^2.11.16",
"jest": "^24.1.0",
"typescript": "^3.6.3"
},
"dependencies": {
"@babel/core": "^7.2.2",
"lodash": "^4.17.15",
"riot": "^4.3.8"
}
}