-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.82 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.82 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
{
"name": "phobos",
"version": "0.0.1",
"description": "General purpose language heavily inspired by JavaScript, TypeScript and Dart",
"keywords": [
"compiler",
"phobos"
],
"author": {
"name": "Brandon G. Neri",
"url": "https://deimos.app"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Deimos-Applications/phobos.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "npm run clean && tsc",
"changelog": "conventional-changelog -p angular -u",
"changelog:update": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"clean": "(rm -r ./.nyc_output || true) && (rm -r ./coverage || true) && (rm -r ./dist || true)",
"clean:all": "npm run clean && (rm -r ./node_modules || true)",
"cover": "nyc npm run test",
"cover:check": "nyc --check-coverage npm run test",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"lint": "tslint src/**/*.ts test/**/*.ts",
"preversion": "npm run build && npm run cover:check",
"postversion": "git push && git push --tags",
"prepare": "npm run build",
"test": "mocha",
"upgrade": "npx npm-check -u",
"version": "npm run build && npm run changelog:update"
},
"devDependencies": {
"@types/chai": "^4.1.6",
"@types/mocha": "^8.0.0",
"@types/node": "^15.0.1",
"chai": "^4.1.2",
"conventional-changelog-cli": "^2.0.12",
"coveralls": "^3.0.3",
"cz-conventional-changelog": "^3.0.2",
"mocha": "^9.0.0",
"nyc": "^15.0.0",
"source-map-support": "^0.5.12",
"ts-node": "^10.0.0",
"tslint": "^6.0.0",
"typescript": "^4.0.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {}
}