-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.13 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
{
"name": "micds-kinetic-sculpture",
"version": "1.0.0",
"description": "Interface for creating and executing formations for a sculpture Ehan made",
"main": "src/index.js",
"scripts": {
"start": "npm run ts && node ./build/index.js",
"setup": "cd ./interface && npm install && npm run build",
"lint": "tslint --project tsconfig.json \"src/**/*.ts\"",
"clean": "rimraf ./build",
"test": "echo \"Error: no test specified\" && exit 1",
"ts": "npm run clean && tsc",
"ts:watch": "tsc -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/michaelgira23/micds-kinetic-sculpture.git"
},
"keywords": [
"micds",
"kinetic",
"sculpture"
],
"author": "Michael Gira",
"license": "MIT",
"bugs": {
"url": "https://github.com/michaelgira23/micds-kinetic-sculpture/issues"
},
"homepage": "https://github.com/michaelgira23/micds-kinetic-sculpture#readme",
"dependencies": {
"@types/seedrandom": "^2.4.27",
"express": "^4.16.2",
"seedrandom": "^2.4.3"
},
"devDependencies": {
"@types/express": "^4.11.0",
"rimraf": "^2.6.2",
"typescript": "^2.6.2"
}
}