-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 967 Bytes
/
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
{
"name": "lucca",
"version": "0.0.0",
"description": "A reactive web framework",
"keywords": [
"TypeScript",
"framework",
"javascript",
"reactive",
"lucca"
],
"author": "prakash venkatraman",
"repository": "dopatraman/lucca",
"license": "Apache-2.0",
"private": false,
"engines": {
"node": ">=6.0.0"
},
"main": "dist/index.js",
"scripts": {
"build": "./scripts/build.sh",
"clean": "./scripts/clean.sh",
"test": "./scripts/test.sh",
"examples": "./scripts/examples.sh",
"prepublish": "npm run clean && npm run build"
},
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/maquette": "2.1.6",
"@types/mocha": "^2.2.43",
"@types/node": "^8.0.19",
"chai": "^4.1.2",
"chai-spies": "^0.7.1",
"glob": "^7.1.2",
"maquette": "^2.5.4",
"mocha": "^4.0.1",
"ts-loader": "^3.0.5",
"tslint": "^5.5.0",
"typescript": "^2.2.1",
"webpack": "^3.8.1"
}
}