-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
45 lines (45 loc) · 1.06 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
{
"name": "js.la",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm run watch-js & harp server public",
"watch-js": "watchify client/cards.js -o public/js/cards.js",
"build-js": "browserify client/cards.js > public/js/cards.js",
"build": "npm run build-js && harp compile public dist",
"test": "standard",
"update-data": "node scripts/generate_data_file.js > public/_data.json"
},
"standard": {
"ignore": [
"public/assets/*",
"dist/*"
]
},
"repository": {
"type": "git",
"url": "git://github.com/jsla/js.la.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jsla/js.la/issues"
},
"dependencies": {
"authentic-client": "^1.2.2",
"browserify": "^16.5.0",
"dotenv": "^6.2.0",
"harp": "^0.29.0",
"lodash": "^4.17.11",
"lodash.find": "^4.6.0",
"map-async": "^0.1.1",
"nanohtml": "^1.6.3",
"standard": "^12.0.1"
},
"devDependencies": {
"sha1": "^1.1.1",
"tape": "^4.10.1"
}
}