-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.25 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
46
47
48
49
50
51
52
53
{
"name": "nel-io",
"version": "0.0.0",
"description": "NeL io library",
"main": "src/nel/io",
"registry": "github",
"scripts": {
"lint": "jshint src/nel/**/*.js test/**/*.js test/nel/**/*.js",
"pretest": "npm run lint",
"test": "mocha --recursive --compilers js:babel/register",
"postinstall": "jspm install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zerotacg/nel-io.git"
},
"author": {
"name": "Tobias Peters",
"email": "[email protected]"
},
"contributors": [
{
"name": "Tobias Peters",
"email": "[email protected]"
}
],
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/zerotacg/nel-io/issues"
},
"homepage": "https://github.com/zerotacg/nel-io#readme",
"devDependencies": {
"babel": "^5.8.24",
"chai": "^3.4.1",
"jshint": "^2.8.0",
"jspm": "^0.16.15",
"mocha": "^2.3.4",
"sinon": "^1.17.2",
"sinon-chai": "^2.8.0"
},
"jspm": {
"name": "nel/io",
"version": "master",
"directories": {
"lib": "src/nel/io"
},
"devDependencies": {
"babel": "npm:babel-core@^5.8.24",
"babel-runtime": "npm:babel-runtime@^5.8.24",
"core-js": "npm:core-js@^1.1.4"
}
}
}