-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.08 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
{
"name": "nativejs",
"version": "0.0.8",
"description": "Write native JavaScript code.",
"private": true,
"devDependencies": {
"@types/chai": "^4.1.1",
"@types/mocha": "^2.2.46",
"@types/node": "^8.5.8",
"chai": "^4.1.2",
"lerna": "^2.10.1",
"mocha": "^5.0.0",
"rimraf": "^2.6.2",
"ts-node": "^4.1.0",
"tslint": "^5.8.1",
"tslint-eslint-rules": "^5.1.0",
"typescript": "^3.0.3",
"yarn": "^1.5.1"
},
"scripts": {
"clean": "rimraf yarn.lock packages/**/node_modules packages/*/**/*.js packages/**/*.js.map",
"bootstrap": "lerna bootstrap",
"prepare": "tsc",
"format": "prettier --write './packages/**/*.ts'",
"lint": "tslint --project tsconfig.json --format stylish -c tslint.json --fix './packages/**/*.ts'",
"test": "lerna run test"
},
"repository": {
"type": "git",
"url": "git://github.com/brunobasto/native.js.git"
},
"author": "Bruno Basto",
"license": "ISC",
"workspaces": [
"packages/nativejs-compiler",
"packages/nativejs-preset-arduino",
"packages/nativejs-preset-standard"
]
}