forked from google/mathsteps
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.68 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
{
"name": "@taskbase/mathsteps-repo",
"version": "0.0.0",
"private": true,
"description": "Repository of mathsteps lib",
"scripts": {
"build": "npm run test && cd lib && tsc && cp ./package.json ../dist",
"test": "npx ts-mocha -p test/tsconfig.json './test/**/*.test.ts'",
"test-single": "npx ts-mocha -p test/tsconfig.json './test/**/syntax.test.ts'",
"setup-hooks": "ln -s ../../scripts/git-hooks/pre-commit.sh .git/hooks/pre-commit",
"prettify": "prettier --write \"lib/**/*.ts\"",
"prettify-tests": "prettier --write \"test/**/*.ts\"",
"publish-lib": "npm run build && cd dist && npm publish --access=public",
"publish-beta": "npm run build && cd dist && npm publish --tag beta --access=public",
"publish-dryrun": "npm run build && cd dist && npm publish --dry-run --access=public"
},
"engines": {
"node": ">=6.0.0"
},
"devDependencies": {
"@types/assert": "^1.5.4",
"@types/expect": "^24.3.0",
"@types/mathjs": "^6.0.11",
"@types/mocha": "^8.2.1",
"eslint": "^3.10.2",
"eslint-config-google": "^0.7.0",
"eslint-plugin-sort-requires": "^2.1.0",
"mocha": "2.4.5",
"prettier": "2.2.1",
"ts-mocha": "^8.0.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.2",
"mathjs": "3.11.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/taskbase/mathsteps.git"
},
"keywords": [
"math",
"steps",
"algebra",
"cas",
"computer",
"algebra",
"system"
],
"author": "Taskbase",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/taskbase/mathsteps/issues"
},
"homepage": "https://github.com/taskbase/mathsteps#readme",
"dependencies": {}
}