-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 998 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 998 Bytes
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
{
"name": "random-tiles",
"version": "0.0.0",
"description": "Webapp helping with random-like arrangement of floor tiles",
"author": "Paweł Barszcz @nkoder",
"license": "MIT",
"repository": "https://github.com/nkoder/random-tiles",
"private": true,
"devDependencies": {
"bower": "^1.3.12",
"grunt": "^0.4.5",
"grunt-bower": "^0.16.1",
"grunt-cli": "^0.1.13",
"grunt-karma": "^0.9.0",
"grunt-protractor-runner": "^1.1.4",
"http-server": "^0.7.4",
"jasmine-core": "^2.1.3",
"karma": "^0.12.31",
"karma-jasmine": "^0.3.4",
"karma-phantomjs-launcher": "^0.1.4",
"protractor": "^1.6.1"
},
"scripts": {
"postinstall": "./node_modules/.bin/webdriver-manager update && ./node_modules/.bin/bower install && ./node_modules/.bin/grunt bower",
"test": "./node_modules/.bin/grunt unitTests",
"unitTests": "npm test",
"e2eTests": "./node_modules/.bin/grunt e2eTests",
"start": "http-server -a localhost -p 8000 -c-1"
}
}