-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.28 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
54
55
56
57
58
59
{
"name": "@nphyx/vectrix",
"version": "0.2.1",
"repository": "https://github.com/nphyx/vectrix",
"description": "A functional matrix math library for javascript",
"author": "Justen Robertson <[email protected]>",
"main": "",
"dependencies": {},
"devDependencies": {
"babel-core": "^6.0.0",
"babel-loader": "^6.0.0",
"babel-preset-es2015": "^6.0.0",
"del": "^2.2.2",
"gulp": "^3.9.0",
"gulp-babel": "^6.0.0",
"gulp-babel-istanbul": "^1.0.0",
"gulp-inject-modules": "^0.1.1",
"gulp-mocha": "^2.2.0",
"gulp-replace": "^0.5.4",
"jsdox": "^0.4.9",
"jshint": "*",
"mocha": "*",
"should": "*",
"webpack": "^2.5.0"
},
"jshintConfig": {
"curly": false,
"latedef": "nofunc",
"strict": false,
"globalstrict": false,
"newcap": true,
"quotmark": "double",
"undef": true,
"unused": true,
"asi": true,
"esnext": true,
"browser": true,
"devel": true,
"node": true,
"worker": true,
"globals": {
"chai": false,
"describe": false,
"define": false,
"it": false,
"xit": false,
"before": false,
"beforeEach": false,
"after": false,
"afterEach": false
}
},
"babel": {
"presets": [
"es2015"
]
},
"license": "MIT"
}