-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
51 lines (51 loc) · 1.2 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
{
"name": "immutable",
"description": "efficient immutable data-structures in javascript.",
"version": "1.4.0",
"main": "src/immutable.js",
"keywords": [
"immutability",
"functional programming",
"fp",
"persistent datastructures"
],
"author": "hughfdjackson",
"license": "BSD",
"repository": {
"type": "git",
"url": "https://github.com/hughfdjackson/immutable.git"
},
"dependencies": {
"string-hash": "1.1.0",
"persistent-hash-trie": "0.4.1"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha",
"prepublish": "./node_modules/browserify/bin/cmd.js --standalone immutable -e src/immutable.js | ./node_modules/uglify-js/bin/uglifyjs > build/immutable.js"
},
"devDependencies": {
"underscore": "*",
"mocha": "1.8.1",
"browserify": "2.17.2",
"uglify-js": "2.3.6"
},
"testling": {
"files": "test/*-test.js",
"browsers": [
"iexplore/6.0",
"iexplore/7.0",
"iexplore/8.0",
"iexplore/9.0",
"iexplore/10.0",
"chrome/4.0",
"chrome/23.0",
"firefox/3.0",
"firefox/17.0",
"opera/10.0",
"opera/12.0",
"safari/5.0.5",
"safari/5.1"
],
"harness": "mocha"
}
}