Skip to content

Commit e144251

Browse files
committed
Project boilerplate
1 parent 61be0b8 commit e144251

File tree

3 files changed

+38
-1
lines changed

3 files changed

+38
-1
lines changed

.jshintrc

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"bitwise": true,
3+
"eqeqeq": true,
4+
"forin": true,
5+
"freeze": true,
6+
"funcscope": true,
7+
"futurehostile": true,
8+
"globalstrict": true,
9+
"latedef": true,
10+
"maxparams": 1,
11+
"noarg": true,
12+
"nocomma": true,
13+
"nonew": true,
14+
"notypeof": true,
15+
"singleGroups": true,
16+
"undef": true,
17+
"unused": true,
18+
"eqnull": true
19+
}
20+

bower.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
"moduleType": [
44
"node"
55
],
6+
"repository": {
7+
"type": "git",
8+
"url": "git://github.com/purescript-node/purescript-node-process"
9+
},
610
"ignore": [
711
"**/.*",
812
"node_modules",
@@ -14,6 +18,7 @@
1418
"purescript-maps": "~0.5.4",
1519
"purescript-node-streams": "~0.3.0",
1620
"purescript-maybe": "~0.3.5",
17-
"purescript-exceptions": "~0.3.3"
21+
"purescript-exceptions": "~0.3.3",
22+
"purescript-unsafe-coerce": "~0.1.0"
1823
}
1924
}

package.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"private": true,
3+
"scripts": {
4+
"postinstall": "pulp dep install",
5+
"build": "jshint src && pulp build && rimraf docs && pulp docs"
6+
},
7+
"devDependencies": {
8+
"jshint": "^2.8.0",
9+
"pulp": "^5.0.2",
10+
"rimraf": "^2.4.4"
11+
}
12+
}

0 commit comments

Comments
 (0)