-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
69 lines (69 loc) · 1.69 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
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@lona/compiler",
"version": "0.2.1",
"description": "Lona cross-platform code compiler",
"main": "lib/index.js",
"bin": {
"lona": "lib/bin.js"
},
"files": [
"lib",
"static"
],
"types": "lib/index.d.ts",
"scripts": {
"build": "npm run clean && tsc --declaration",
"clean": "rm -rf ./lib",
"prepublishOnly": "npm run build",
"test": "jest",
"test:watch": "jest --watch"
},
"repository": "https://github.com/Lona/compiler",
"author": "Mathieu Dutour",
"license": "MIT",
"dependencies": {
"@lona/serialization": "^0.7.0",
"buffs": "^0.5.0",
"color": "^3.1.2",
"lodash.camelcase": "^4.3.0",
"lodash.intersection": "^4.4.0",
"lodash.isequal": "^4.5.0",
"lodash.lowerfirst": "^4.3.1",
"lodash.snakecase": "^4.1.1",
"lodash.upperfirst": "^4.3.1",
"prettier": "^1.19.1",
"tree-visit": "^0.0.5",
"uuid": "^7.0.2",
"yargs": "^15.1.0"
},
"devDependencies": {
"@types/color": "^3.0.1",
"@types/jest": "^25.1.3",
"@types/lodash.camelcase": "^4.3.6",
"@types/lodash.intersection": "^4.4.6",
"@types/lodash.isequal": "^4.5.5",
"@types/lodash.lowerfirst": "^4.3.6",
"@types/lodash.snakecase": "^4.1.6",
"@types/lodash.upperfirst": "^4.3.6",
"@types/node": "^13.7.6",
"@types/prettier": "^1.19.0",
"@types/uuid": "^7.0.0",
"jest": "^25.1.0",
"ts-jest": "^25.2.1",
"ts-node": "^8.6.2",
"typescript": "^3.8.2"
},
"prettier": {
"proseWrap": "never",
"singleQuote": true,
"trailingComma": "es5",
"semi": false
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testPathIgnorePatterns": [
"lib"
]
}
}