forked from jon-nona/hack-assembler-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 3.18 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 3.18 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "hack-assembler-typescript",
"version": "1.0.0",
"description": "An assembler for the hack language written in typescript",
"main": "index.js",
"bin": "index.js",
"scripts": {
"assemble": "babel-node lib/index.js",
"audit:critical": "audit-ci --critical",
"build": "npm run _build:spec",
"build:copyfiles": "npm run _build:copyfiles:spec",
"build:clean": "npm run _build:clean:spec",
"build:types": "npm run _build:types:spec",
"build:js": "npm run _build:js:spec",
"build:binaries": "npm run build && npx pkg --out-path bin lib/package.json",
"help": "package-json-help.js",
"lint": "npm run _lint:spec",
"lint:fix": "npm run _lint:fix:spec",
"publish": "npm run _publish:spec",
"test": "npm run _test:spec",
"test:coverage": "npm run _test:coverage:spec",
"test:watch": "npm run _test:watch:spec",
"type:check": "tsc --noEmit",
"type:check:watch": "npm run type:check -- --watch",
"_build:spec": "npm run build:clean && npm run build:types && npm run build:js && npm run build:copyfiles",
"_build:clean:spec": "rimraf lib",
"_build:copyfiles:spec": "copyfiles \"package.json\" \"react-native.config.js\" \"react-native-blns-sdk.podspec\" \"ios/**/*\" \"android/**/*\" ./lib",
"_build:js:spec": "npx babel src --out-dir lib --extensions \".ts\" --ignore \"**/*.test.ts\" --source-maps inline",
"_build:types:spec": "tsc --emitDeclarationOnly",
"_lint:spec": "eslint './src/**/*.ts'",
"_lint:fix:spec": "eslint './src/**/*.{ts}'",
"_publish:spec": "cd lib && npx publish-to-git --tag ${PACKAGE_TAG} && cd ..",
"_git:pre-commit": "npm run lint",
"_git:pre-push": "npm run lint",
"_test:coverage:spec": "jest --coverage && open ./coverage/index.html",
"_test:ci": "jest --no-cache --ci --runInBand",
"_test:spec": "jest",
"_test:watch:spec": "jest --watch",
"prepare": "husky install"
},
"author": "Jonathan Arnold",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/node": "^7.10.5",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@babel/runtime": "^7.11.2",
"@commitlint/config-conventional": "^12.1.4",
"@types/jest": "^26.0.14",
"@types/yargs": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"audit-ci": "^4.1.0",
"babel-jest": "^27.0.2",
"commitlint": "^12.1.4",
"copyfiles": "^2.3.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^6.0.0",
"jest": "^27.0.4",
"jest-watch-typeahead": "^0.6.1",
"js-parametrize": "^0.0.3",
"npm-run-all": "^4.1.5",
"package-json-help": "^0.0.11",
"prettier": "^2.1.2",
"publish-to-git": "^1.1.9",
"rimraf": "^3.0.2",
"rxjs-marbles": "^7.0.0",
"ts-jest": "^27.0.3",
"typescript": "^4.0.3"
},
"dependencies": {
"chalk": "^4.1.0",
"ramda": "^0.27.1",
"rxjs": "^7.1.0",
"strip-comments": "^2.0.1",
"yargs": "^17.0.1"
}
}