forked from as-pect/as-pect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.87 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
57
{
"name": "as-pect",
"description": "Write AssemblyScript tests at blazing fast speeds",
"scripts": {
"postinstall": "lerna bootstrap",
"coveralls": "cat ./packages/core/coverage/lcov.info | coveralls",
"jest": "jest",
"test": "run-s tsc:all test:all",
"test:update-snapshots": "lerna run test:update-snapshots",
"test:ci": "run-s tsc:all test:ci:all",
"test:ci:all": "lerna run test:ci",
"test:all": "lerna run test",
"tsc:all": "lerna run tsc:all",
"prettier": "prettier --write \"**/src/**/*.ts\" \"**/*.md\"",
"lint": "eslint --fix --max-warnings 0 --ext ts \"packages/**/assembly/**/*.ts\"",
"check": "run-s prettier lint"
},
"repository": {
"type": "git",
"url": "https://github.com/jtenner/aspect.git"
},
"author": "Joshua Tenner <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jtenner/aspect/issues"
},
"homepage": "https://github.com/jtenner/as-pect#readme",
"devDependencies": {
"@as-pect/assembly": "file:./packages/assembly",
"@as-pect/cli": "file:./packages/cli",
"@as-pect/core": "file:./packages/core",
"@as-pect/csv-reporter": "file:./packages/csv-reporter",
"@as-pect/json-reporter": "file:./packages/json-reporter",
"@as-pect/snapshots": "file:./packages/snapshots",
"@types/diff": "^5.0.2",
"@types/glob": "^7.2.0",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"assemblyscript": "^0.19.22",
"coveralls": "^3.1.1",
"eslint": "^8.6.0",
"jest": "^27.4.7",
"lerna": "^4.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"strip-ansi": "^7.0.1",
"ts-jest": "^27.1.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"dependencies": {
"line-column": "^1.0.2"
}
}